Loading

Quipoin Menu

Learn • Practice • Grow

react / React Project Structure
mcq
Direction: Choose the correct option

Q1.

In a typical React project created with CRA, which file is the entry point that renders the app?
A. main.js
B. App.js
C. index.html
D. index.js
Direction: Choose the correct option

Q2.

Where is the index.html file located in a CRA project?
A. public
B. src
C. config
D. build
Direction: Choose the correct option

Q3.

What is the purpose of the node_modules folder?
A. Store source code
B. Store third-party dependencies
C. Store build output
D. Store configuration files
Direction: Choose the correct option

Q4.

Which file contains metadata like dependencies and scripts for a React project?
A. README.md
B. package-lock.json
C. package.json
D. .gitignore
Direction: Choose the correct option

Q5.

In a CRA project, where are CSS modules typically placed?
A. In public folder
B. In index.css
C. Alongside components with .module.css extension
D. In a separate styles folder