-
Notifications
You must be signed in to change notification settings - Fork 0
/
git.json
62 lines (62 loc) · 1.35 KB
/
git.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[
{
"topic": "Git",
"subtopic": "Command",
"type": "MCQ",
"question": "Which of the following git command that downloads your repository from GitHub to your local machine?",
"options": ["git fork", "git push", "git rebase", "git clone"],
"answer": 3,
"difficulty": "Easy"
},
{
"topic": "Git",
"subtopic": "Definition",
"type": "MCQ",
"question": "Git is a",
"options": [
"Distributed version control system",
"Localized version control system",
"Centralized version control system",
"None of the above"
],
"answer": 0,
"difficulty": "Easy"
},
{
"topic": "Git",
"subtopic": "Command",
"type": "MCQ",
"question": "Which of the following git command can be used to check the stored stashes?",
"options": [
"git stash branch",
"git stash list",
"git stash",
"git stash show"
],
"answer": 1,
"difficulty": "Medium"
},
{
"topic": "Git",
"subtopic": "Command",
"type": "MCQ",
"question": "Which is used to reference cloned remote repository?",
"options": ["head", "origin", "log", "status"],
"answer": 1,
"difficulty": "Easy"
},
{
"topic": "Git",
"subtopic": "Command",
"type": "MCQ",
"question": "Git log command contains:",
"options": [
"commit message",
"commit date and author metadata",
"commit hash",
"all of the above"
],
"answer": 3,
"difficulty": "Easy"
}
]