Overview | 2026 Update with complete solutions.
,
, Module 1: Git Installation and Configuration (Questions 1-10)
Question 1
What is NOT a valid way to use version control?
A. Tracking changes to source code files
B. Collaborating with team members on shared code
C. Making changes to an image file and saving the new version to the same file
D. Reviewing historical versions of documents
- answer-; C. Making changes to an image file and saving the new version to the
same file. Version control requires creating distinct versions that can be recalled.
Simply overwriting a file does not preserve the previous version, which defeats
the purpose of version control .
Question 2
What command should you use to ensure all projects you work on have black and
white output?
A. git config --global color.output monochrome
B. git config --global color.ui false
C. git config --system color.ui off
D. git config --local color.output bw
- answer-; B. git config --global color.ui false. This command disables colored
output globally for all Git projects. The --global flag applies the setting to all
repositories, and color.ui false turns off color coding .
Question 3
Besides accessing a project's .git/config file, how can you change its contents?
A. git config
B. git settings
C. git properties
D. git options