@@ -17,26 +17,29 @@ export class AmiyahJonesQuiz implements QuizQuestionProvider {
17
17
private static makeQuestion0 ( ) : QuizQuestion {
18
18
return new MultipleChoiceQuizQuestion (
19
19
0 ,
20
- 'What is a multiple choice question ?' ,
20
+ 'What two computer parts get mixed up often ?' ,
21
21
new Map < AnswerChoice , string > ( [
22
- [ AnswerChoice . A , 'A question about agency' ] ,
23
- [ AnswerChoice . B , 'The hardest kind of quiz question there is' ] ,
24
- [
25
- AnswerChoice . C ,
26
- 'A question that can be answered using one or more provided choices' ,
27
- ] ,
28
- [ AnswerChoice . D , 'Whatever you want it to be!' ] ,
22
+ [ AnswerChoice . A , 'Power supply and mother board' ] ,
23
+ [ AnswerChoice . B , 'Graphics card and ram' ] ,
24
+ [ AnswerChoice . C , 'Ram and hard drive' ] ,
25
+ [ AnswerChoice . D , 'None, all of them are different' ] ,
29
26
] ) ,
30
27
AnswerChoice . UNANSWERED ,
31
28
) ; // Replace `UNANSWERED` with the correct answer.
32
29
}
33
30
34
31
private static makeQuestion1 ( ) : QuizQuestion {
35
- return new QuizQuestion (
32
+ return new MultipleChoiceQuizQuestion (
36
33
1 ,
37
- 'What is a computer?' ,
38
- 'A machine that automatically transforms input into output.' ,
39
- ) ; // Provide an answer.
34
+ 'Which computer part figures out how everything is supposed to look on your screen?' ,
35
+ new Map < AnswerChoice , string > ( [
36
+ [ AnswerChoice . A , 'Graphics card' ] ,
37
+ [ AnswerChoice . B , 'CPU' ] ,
38
+ [ AnswerChoice . C , 'mother board' ] ,
39
+ [ AnswerChoice . D , 'mother board' ] ,
40
+ ] ) ,
41
+ AnswerChoice . UNANSWERED ,
42
+ ) ; // Replace `UNANSWERED` with the correct answer.
40
43
}
41
44
42
45
private static makeQuestion2 ( ) : QuizQuestion {
@@ -46,12 +49,4 @@ export class AmiyahJonesQuiz implements QuizQuestionProvider {
46
49
'A machine that automatically transforms input into output.' ,
47
50
) ; // Provide an answer.
48
51
}
49
-
50
- private static makeQuestion3 ( ) : QuizQuestion {
51
- return new QuizQuestion (
52
- 1 ,
53
- 'What is a computer?' ,
54
- 'A machine that automatically transforms input into output.' ,
55
- ) ; // Provide an answer.
56
- }
57
52
}
0 commit comments