Recall & Review
beginner
What is Azure Repos?
Azure Repos is a set of version control tools that you can use to manage your code. It helps teams track changes and collaborate on software development.
Click to reveal answer
beginner
Name the two types of version control systems supported by Azure Repos.
Azure Repos supports Git (distributed version control) and Team Foundation Version Control (TFVC, centralized version control).
Click to reveal answer
beginner
How does Azure Repos help when multiple people work on the same code?
Azure Repos tracks changes from each person, helps merge their work, and keeps a history of all changes so conflicts can be resolved easily.
Click to reveal answer
intermediate
What is a pull request in Azure Repos?
A pull request is a way to ask team members to review and approve code changes before merging them into the main codebase.
Click to reveal answer
beginner
Why is it important to commit code changes frequently in Azure Repos?
Frequent commits make it easier to track progress, find bugs, and merge changes without conflicts. It keeps the project organized and safe.
Click to reveal answer
Which version control system is NOT supported by Azure Repos?
✗ Incorrect
Azure Repos supports Git and TFVC but does not support Subversion (SVN).
What is the main purpose of a pull request in Azure Repos?
✗ Incorrect
Pull requests are used to review and approve code changes before merging them into the main branch.
Which of the following best describes Git in Azure Repos?
✗ Incorrect
Git is a distributed version control system supported by Azure Repos.
What happens when two people edit the same file in Azure Repos using Git?
✗ Incorrect
Git tries to merge changes and if conflicts occur, it asks users to resolve them.
Why should you write clear commit messages in Azure Repos?
✗ Incorrect
Clear commit messages help everyone understand the purpose of changes and make collaboration easier.
Explain how Azure Repos supports team collaboration on code projects.
Think about how changes from different people are managed and reviewed.
You got /4 concepts.
Describe the difference between Git and TFVC in Azure Repos.
Consider how and where changes are saved and shared.
You got /4 concepts.