Skip to content

Commit 9ae6de7

Browse files
committed
Chore: Fixed the questions to make them related to computers
1 parent 2d382f6 commit 9ae6de7

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

lesson_03/quiz/src/quizzes/Dylan_Lafferty_quiz.ts

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -21,41 +21,41 @@ export class DylanLaffertyQuiz implements QuizQuestionProvider {
2121
private static makeQuestion0(): QuizQuestion {
2222
return new MultipleChoiceQuizQuestion(
2323
0,
24-
'What is the next upcoming holiday?',
24+
'What is the Power supply unit most compared to when comparing it to a human body?',
2525
new Map<AnswerChoice, string>([
26-
[AnswerChoice.A, 'St. Patricks Day'],
27-
[AnswerChoice.B, 'Valentines Day'],
28-
[AnswerChoice.C, 'Halloween'],
29-
[AnswerChoice.D, '4th of July'],
26+
[AnswerChoice.A, 'Heart'],
27+
[AnswerChoice.B, 'Arm'],
28+
[AnswerChoice.C, 'Leg'],
29+
[AnswerChoice.D, 'Brain'],
3030
]),
31-
AnswerChoice.UNANSWERED,
31+
AnswerChoice.A,
3232
);
3333
}
3434
private static makeQuestion1(): QuizQuestion {
3535
return new MultipleChoiceQuizQuestion(
3636
1,
37-
'What food is traditionally eaten on St Patricks Day?',
37+
'What is the full name of CPU?',
3838
new Map<AnswerChoice, string>([
39-
[AnswerChoice.A, 'Tacos'],
40-
[AnswerChoice.B, 'Pizza'],
41-
[AnswerChoice.C, 'Corned Beef and Cabbage'],
42-
[AnswerChoice.D, 'Lasagna'],
39+
[AnswerChoice.A, 'Central Place Unit'],
40+
[AnswerChoice.B, 'Certified Processing Unit'],
41+
[AnswerChoice.C, 'Central Processing Unit'],
42+
[AnswerChoice.D, 'Configured Procerdale Unicode'],
4343
]),
44-
AnswerChoice.UNANSWERED,
44+
AnswerChoice.C,
4545
);
4646
}
4747

4848
private static makeQuestion2(): QuizQuestion {
4949
return new MultipleChoiceQuizQuestion(
5050
2,
51-
'What is the mascot of St Patricks Day?',
51+
'What is used to keep Short term memory in a computer?',
5252
new Map<AnswerChoice, string>([
53-
[AnswerChoice.A, 'Bunny'],
54-
[AnswerChoice.B, 'St. Nicholas'],
55-
[AnswerChoice.C, 'Turkey'],
56-
[AnswerChoice.D, 'Leprechaun'],
53+
[AnswerChoice.A, 'Hard Drive'],
54+
[AnswerChoice.B, 'SSD'],
55+
[AnswerChoice.C, 'GPU'],
56+
[AnswerChoice.D, 'RAM'],
5757
]),
58-
AnswerChoice.UNANSWERED,
58+
AnswerChoice.D,
5959
);
6060
}
6161
}

0 commit comments

Comments
 (0)