Beginner Git & Version Control
Q8 / 100

What is the "staging area" (also called the "index") in Git?

Correct! Well done.

Incorrect.

The correct answer is B) An intermediate area where changes are placed before being committed, allowing you to selectively prepare what goes into the next commit

B

Correct Answer

An intermediate area where changes are placed before being committed, allowing you to selectively prepare what goes into the next commit

Explanation

The staging area lets you build up a commit incrementally — you can stage some changes with "git add" while leaving others unstaged, giving fine-grained control over what each commit contains.

Progress
8/100