@@ -21,41 +21,41 @@ export class DylanLaffertyQuiz implements QuizQuestionProvider {
21
21
private static makeQuestion0 ( ) : QuizQuestion {
22
22
return new MultipleChoiceQuizQuestion (
23
23
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 ?' ,
25
25
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 ' ] ,
30
30
] ) ,
31
- AnswerChoice . UNANSWERED ,
31
+ AnswerChoice . A ,
32
32
) ;
33
33
}
34
34
private static makeQuestion1 ( ) : QuizQuestion {
35
35
return new MultipleChoiceQuizQuestion (
36
36
1 ,
37
- 'What food is traditionally eaten on St Patricks Day ?' ,
37
+ 'What is the full name of CPU ?' ,
38
38
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 ' ] ,
43
43
] ) ,
44
- AnswerChoice . UNANSWERED ,
44
+ AnswerChoice . C ,
45
45
) ;
46
46
}
47
47
48
48
private static makeQuestion2 ( ) : QuizQuestion {
49
49
return new MultipleChoiceQuizQuestion (
50
50
2 ,
51
- 'What is the mascot of St Patricks Day ?' ,
51
+ 'What is used to keep Short term memory in a computer ?' ,
52
52
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 ' ] ,
57
57
] ) ,
58
- AnswerChoice . UNANSWERED ,
58
+ AnswerChoice . D ,
59
59
) ;
60
60
}
61
61
}
0 commit comments