QuestionQ501

Software Development and Design

What are two advantages of using version control?

Choose two
  • 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.
  • C It improves code availability by distributing the data across different machines.
  • D It provides automation of the build and deployment process out of the box.
  • E It executes tests and reveals compilation errors before the code is committed.
Explanation

Version control enables multiple contributors to work on the same project concurrently while coordinating and merging their changes. It also maintains a long-term record of revisions to application files, allowing earlier versions and changes to be reviewed or restored.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!