Skip to content

Commit ae22f44

Browse files
Calvin RobinsonCalvin Robinson
authored andcommitted
feat: modified quiz yaml file
1 parent c549980 commit ae22f44

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

lesson_03/quiz/quiz.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
quiz:
22
answers:
3+
anthonymays:
4+
- $2y$10$8eHSzy3aCu4Ry3LzO9nWCeGpofSxsNVbnF.wCfn3ZADwQ6MEtN/KK
5+
- $2y$10$55EXRjF26JIgebtoH800ZOJecfefvMgHicuxf/rwTENuxiUaFQcNe
6+
anotherone:
7+
- $2y$10$8eHSzy3aCu4Ry3LzO9nWCeGpofSxsNVbnF.wCfn3ZADwQ6MEtN/KK
8+
- $2y$10$dGB0CGv7.XQC5OqfyY6iXOiJsdVyxU3ve5YE0gt4m2I8P8H13lNXa
9+
310
calvinrobinson:
411
- $2y$10$cq2na3OgOfB0rpCum0vwA./4zXbQ2xZT5avpyfmpp9e0LDtU5eJu.
512
- $2y$10$yog14Y5aV9U3lPv3s9FhaORRwg9rRslGdnBt8Px8ASQWtxUjgwHpS
613
- $2y$10$k5rLqfcOEJy/T3E5MRczRuvIIfjeefiuDp02nSN2o7j2BUoD48nb2
7-
814

lesson_03/quiz/src/quizzes/calvin_robinson_quiz.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export class CalvinRobinsonQuiz implements QuizQuestionProvider {
1111
}
1212

1313
makeQuizQuestions(): QuizQuestion[] {
14-
return [CalvinRobinsonQuiz.makeQuestion0(), CalvinRobinsonQuiz.makeQuestion1()];
14+
return [CalvinRobinsonQuiz.makeQuestion0(), CalvinRobinsonQuiz.makeQuestion1(), CalvinRobinsonQuiz.makeQuestion2()];
1515
}
1616

1717
private static makeQuestion0(): QuizQuestion {
@@ -31,7 +31,7 @@ private static makeQuestion0(): QuizQuestion {
3131
); // Replace `UNANSWERED` with the correct answer.
3232
}
3333

34-
private static makeQuestion0(): QuizQuestion {
34+
private static makeQuestion1(): QuizQuestion {
3535
return new MultipleChoiceQuizQuestion(
3636
1,
3737
'Which answer best describes GitHub?',
@@ -48,7 +48,7 @@ private static makeQuestion0(): QuizQuestion {
4848
); // Replace `UNANSWERED` with the correct answer.
4949
}
5050

51-
private static makeQuestion0(): QuizQuestion {
51+
private static makeQuestion2(): QuizQuestion {
5252
return new MultipleChoiceQuizQuestion(
5353
2,
5454
'What is PR in software development?',

0 commit comments

Comments
 (0)