nerdexam
Cisco

200-901 · Question #524

What are two benefits of using version control? (Choose two.)

The correct answer is A. It enables multiple team members to work on the same project simultaneously. B. It provides a complete long-term change history of every file of an application. A) Version control systems (e.g., Git) use branching and merging to allow multiple team members to work on the same codebase simultaneously without overwriting each other's work. B) Every commit records who changed what, when, and why - giving a complete long-term audit trail…

Software Development and Design

Question

What are two benefits of using version control? (Choose two.)

Options

  • AIt enables multiple team members to work on the same project simultaneously.
  • BIt provides a complete long-term change history of every file of an application.
  • CIt improves code availability by distributing the data across different machines.
  • DIt provides automation of the build and deployment process out of the box.
  • EIt executes tests and reveals compilation errors before the code is committed.

How the community answered

(45 responses)
  • A
    91% (41)
  • C
    4% (2)
  • D
    2% (1)
  • E
    2% (1)

Explanation

A) Version control systems (e.g., Git) use branching and merging to allow multiple team members to work on the same codebase simultaneously without overwriting each other's work. B) Every commit records who changed what, when, and why - giving a complete long-term audit trail of every file. C is incorrect because distributing data across machines is a feature of distributed VCS but is not the primary benefit and not universally applicable. D is incorrect - CI/CD pipelines provide build/deployment automation, not version control itself. E is incorrect - linters and CI pipelines catch errors; version control itself does not execute tests before commit (pre-commit hooks are separate tooling).

Topics

#Version Control#Collaboration#Code History#Software Development Practices

Community Discussion

No community discussion yet for this question.

Full 200-901 Practice