Skip to content

Module Quiz: Starting the Project :Front-End Developer Capstone (Meta Front-End Developer Professional Certificate) Answers 2025

1. Question 1

Which command shows the current branch?
git status ✔️
git list ❌
git add ❌
git commit ❌


2. Question 2Select all that apply

Automates testing ❌
Helps keep a record of all changes ✔️
Enables easy collaboration ✔️
Allows multiple people to work without overwriting each other ✔️
Increases speed of development ❌


3. Question 3

What does git add . do?
Commits files ❌
Adds files from home directory ❌
Adds all untracked files in current directory to staging ✔️


4. Question 4

Which package manager is needed for React?
No package manager ❌
pip ❌
npn ❌ (typo)
npm ✔️


5. Question 5

Importance of node_modules?
Not important ❌
Stores all project dependencies ✔️
Used by dependencies to save project files ❌


6. Question 6

To create smooth animation in Figma, use Smart Animate.
True ❌
False ✔️ (Correct option: Smart Animate, NOT “Clever animate”)


7. Question 7

Which is true about wireframes?
Serve as fully polished prototypes ❌
Need brand fonts/colors ❌
Don’t need fonts, colors, or images ✔️


8. Question 8

Problems without internet while working on React?
Cannot use hooks ❌
Cannot save code ❌
Cannot locally test ❌
Cannot install npm packages ✔️


9. Question 9

How to make a React project public online?
Upload the build folder ✔️
Uploading src directory ❌
Uploading zip ❌
Uploading test directory ❌


10. Question 10

Important step before ideating?
Prototype ❌
Test and build ❌
Define the problem ✔️
Design UI ❌



📘 Summary Table

Q No. Correct Answer
1 git status
2 Record changes, Collaboration, No overwriting
3 Adds current directory untracked files to staging
4 npm
5 Saves dependencies
6 False
7 Wireframes don’t need fonts/colors/images
8 Cannot install npm packages
9 Upload build folder
10 Define the problem