Skip to content

Module Quiz: Working with Git :Version Control (Meta iOS Developer Professional Certificate) Answers 2026

Question 1

The git add command will add files and changes to the staged area.

True
❌ False


Question 2

What git command will show you the current state of the local working directory?

❌ git clone
❌ git pull
git status


Question 3

What command do you use to upload changes to a remote repository?

❌ git commit
❌ git clone
git push


Question 4

The git diff command will show the revision history of a repository.

❌ True
False


Question 5

Which command is used to download the latest changes from a remote repository?

git pull
❌ git push


Question 6

You want to create a new branch named “feature”. Which commands can you use? (Select all that apply)

❌ git clone feature
git checkout -b feature
git branch feature


Question 7

You run git diff and see the following output. Which clothing item was removed?

* Hat
-* Shoes
+* Dress
* Watch

Shoes
❌ Watch
❌ Dress
❌ Hat


Question 8

What git command shows who made changes to each line in a specific file?

❌ git diff
❌ git log
git blame
❌ git clone


🧾 Summary Table

Question Correct Answer(s)
Q1 True
Q2 git status
Q3 git push
Q4 False
Q5 git pull
Q6 git checkout -b feature, git branch feature
Q7 Shoes
Q8 git blame