GH-900 · Question #19
GH-900 Question #19: Real Exam Question with Answer & Explanation
The correct answer is C: Ensures each developer has their own local copy of the entire code repository, including the. {"question_number": 2, "question": "A distributed version control system is best described as a system that:", "correct_answer": "C", "explanation": "A distributed version control system (DVCS), like Git, gives every developer a full local copy of the entire repository, including
Question
A distributed version control system is best described as a system that:
Options
- ARelies on a central server to store the entire project history and allows developers to check out
- BStores project files on a cloud-based server and allows multiple developers to collaborate on the
- CEnsures each developer has their own local copy of the entire code repository, including the
- DRequires developers to manually track and manage different versions of their files using naming
Explanation
{"question_number": 2, "question": "A distributed version control system is best described as a system that:", "correct_answer": "C", "explanation": "A distributed version control system (DVCS), like Git, gives every developer a full local copy of the entire repository, including its complete history. This means developers can commit, branch, diff, and review history offline without needing a network connection. Option A describes a centralized VCS (e.g., SVN or CVS), where history lives only on a central server. Option B describes general cloud file storage, not a DVCS. Option D describes manual versioning (e.g., naming files 'v1', 'v2'), which is not a formal version control system at all.", "generated_by": "claude-sonnet", "llm_judge_score": 4}
Topics
Community Discussion
No community discussion yet for this question.