wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

DevOps Version Control Quiz

Total questions: 13

Worksheet time: 7mins

Name
Class
Date
1.

What is the primary reason version control matters in DevOps?

a)

Tracks employee time logs

b)

Helps merge design files

c)

Enables collaboration, traceability, and automation

d)

Automatically creates release notes

2.

Who said: “You can’t have continuous integration without version control”?

a)

Linus Torvalds

b)

Kent Beck

c)

Martin Fowler

d)

Nicole Forsgren

3.

What is the purpose of the git add command?

a)

Create a new repository

b)

Push code to the remote repo

c)

Stage changes to the staging area

d)

Merge two branches

4.

In Git, what is the correct order of operations to push a change to a remote repo?

a)

git push → git add → git commit

b)

git commit → git add → git push

c)

git add → git commit → git push

d)

git pull → git merge → git push

5.

Which Git workflow is most aligned with high-performing DevOps teams?

a)

Centralized

b)

Forking

c)

GitFlow

d)

Trunk-Based

6.

Which Git workflow is least CI/CD friendly?

a)

GitFlow

b)

Trunk-Based

c)

Centralized

d)

Feature Branch

7.

What type of Git commit would use fix: as a prefix?

a)

Adding new documentation

b)

Introducing a new feature

c)

Fixing a bug

d)

Refactoring code

8.

Which of the following is not a benefit of GitFlow?

a)

Fast feedback loops

b)

Branching discipline

c)

Structured release process

d)

Isolation of work

9.

GitFlow includes main, develop, feature, release, and hotfix branches.

a)

True

b)

False

10.

Trunk-Based Development encourages long-lived branches.

a)

True

b)

False

11.

Code review comments should focus on the person, not the code.

a)

True

b)

False

12.

Conventional commits make it easier to automate changelog generation.

a)

True

b)

False

13.

The git merge command stages your changes.

a)

True

b)

False