Free Cisco 200-901 Actual Exam Questions - Question 3 Discussion

Question No. 3Drag & Drop

DRAG DROP Drag and Drop the GIT commands from the left onto the right that add modified local files to a remote repository. Not all options are used 200-901 practice exam questions

Options
Agit push
Bgit add .
Cgit checkout "new branch"
Dgit commit -m "this is my edit"
Egit null
Drag an item to a target. Click × to remove.
Answer Area
Git command one
Drop item here
Git command two
Drop item here
Git command three
Drop item here
US
TU
Tom U.
2026-02-22

I’d say git add and git push are the main ones here. Git add stages the changes, and git push sends them to the remote repo. Git commit isn’t listed, so no commit step in this drag-and-drop.

0
TU
Tom U.
2026-02-21

git push is the only command here that actually sends changes to the remote repo.

0
TU
Tom U.
2026-01-30

git add stages files, but it’s git commit that finalizes changes to be pushed. So only git commit and git push directly affect the remote repo, with push actually updating it.

0
JF
James F.
2026-01-25

git commit is missing here, so only git push actually updates remote.

0
JF
James F.
2026-01-18

git add stages changes locally, but you still need git commit before git push to update the remote repo. So only git add and git push don’t directly add files remotely without commit.

0
ZJ
Zain J.
2026-01-16

git add and git push

0