200-901 · Question #293
What is a benefit of version control?
The correct answer is B. keeps track of all changes to the files. Version control systems (VCS) such as Git, SVN, or Mercurial are designed to track every change made to files over time - recording what changed, who changed it, and when. This creates a complete audit trail and allows developers to revert to any previous state. Answer A is…
Question
What is a benefit of version control?
Options
- Aprevents two users from working on the same file
- Bkeeps track of all changes to the files
- Cprevents the sharing of files
- Dkeeps the list of data types used in the files
How the community answered
(24 responses)- A4% (1)
- B92% (22)
- C4% (1)
Explanation
Version control systems (VCS) such as Git, SVN, or Mercurial are designed to track every change made to files over time - recording what changed, who changed it, and when. This creates a complete audit trail and allows developers to revert to any previous state. Answer A is incorrect: VCS does not prevent multiple users from working on the same file; in fact, it facilitates collaboration by merging changes. Answer C is incorrect: VCS promotes sharing and collaboration, not the opposite. Answer D is incorrect: VCS does not track data types - that is a concern of type systems or schemas. The core value proposition of version control is its change history and the ability to collaborate without losing work.
Topics
Community Discussion
No community discussion yet for this question.