Skip to content

Commit 1946074

Browse files
quiz
1 parent 602e049 commit 1946074

File tree

1 file changed

+13
-15
lines changed

1 file changed

+13
-15
lines changed

lesson_02/quiz/src/lesson2.ts

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ export class Lesson2 {
3939
[AnswerChoice.C, "To delete unnecessary files"],
4040
[AnswerChoice.D, "To run code more efficiently"],
4141
]),
42-
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
42+
43+
AnswerChoice.B,
4344
);
4445
}
4546

@@ -48,15 +49,12 @@ export class Lesson2 {
4849
1,
4950
"What is a fork in Git?",
5051
new Map([
51-
[
52-
AnswerChoice.A,
53-
"A duplicate copy of a repository that you own and modify",
54-
],
52+
[AnswerChoice.A, "A duplicate copy of a repository that you own and modify"],
5553
[AnswerChoice.B, "A temporary backup of the code"],
5654
[AnswerChoice.C, "A tool for merging branches"],
5755
[AnswerChoice.D, "A way to delete a repository"],
5856
]),
59-
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
57+
AnswerChoice.A,
6058
);
6159
}
6260

@@ -70,7 +68,7 @@ export class Lesson2 {
7068
[AnswerChoice.C, "Push changes to the server"],
7169
[AnswerChoice.D, "Write code directly in GitHub"],
7270
]),
73-
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
71+
AnswerChoice.D,
7472
);
7573
}
7674

@@ -84,7 +82,7 @@ export class Lesson2 {
8482
[AnswerChoice.C, "git branch"],
8583
[AnswerChoice.D, "git pull"],
8684
]),
87-
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
85+
AnswerChoice.B,
8886
);
8987
}
9088

@@ -98,7 +96,7 @@ export class Lesson2 {
9896
[AnswerChoice.C, "NetBeans"],
9997
[AnswerChoice.D, "VS Code"],
10098
]),
101-
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
99+
AnswerChoice.D,
102100
);
103101
}
104102

@@ -112,7 +110,7 @@ export class Lesson2 {
112110
[AnswerChoice.C, "Dev Containers"],
113111
[AnswerChoice.D, "Source Control"],
114112
]),
115-
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
113+
AnswerChoice.C,
116114
);
117115
}
118116

@@ -126,7 +124,7 @@ export class Lesson2 {
126124
[AnswerChoice.C, "Playing music"],
127125
[AnswerChoice.D, "Managing source control"],
128126
]),
129-
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
127+
AnswerChoice.C,
130128
);
131129
}
132130

@@ -140,7 +138,7 @@ export class Lesson2 {
140138
[AnswerChoice.C, "cd"],
141139
[AnswerChoice.D, "mkdir"],
142140
]),
143-
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
141+
AnswerChoice.B,
144142
);
145143
}
146144

@@ -154,7 +152,7 @@ export class Lesson2 {
154152
[AnswerChoice.C, "cd"],
155153
[AnswerChoice.D, "mkdir"],
156154
]),
157-
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
155+
AnswerChoice.C,
158156
);
159157
}
160158

@@ -168,7 +166,7 @@ export class Lesson2 {
168166
[AnswerChoice.C, "Remove a file or directory"],
169167
[AnswerChoice.D, "Copy a file or directory"],
170168
]),
171-
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
169+
AnswerChoice.A,
172170
);
173171
}
174172

@@ -182,7 +180,7 @@ export class Lesson2 {
182180
[AnswerChoice.C, "⌘ + Q"],
183181
[AnswerChoice.D, '⌘ + S, then type "terminal"'],
184182
]),
185-
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
183+
AnswerChoice.B,
186184
);
187185
}
188186
}

0 commit comments

Comments
 (0)