What is Git?
a) A distributed version control system
b) A centralized version control system
c) A text editor
d) A compiler
Answer:
a) A distributed version control system
Explanation:
Git is a distributed version control system that allows multiple developers to collaborate on a project. Each developer has a full copy of the project history locally. It is designed to track changes in source code and manage project versions.
Unlike centralized systems, Git allows developers to work offline and merge changes efficiently when they’re back online. This makes it ideal for large projects and remote collaboration.
Git is widely used in software development because of its flexibility, speed, and distributed architecture.