@@ -11,7 +11,11 @@ export class AngelicaCQuiz implements QuizQuestionProvider {
11
11
}
12
12
13
13
makeQuizQuestions ( ) : QuizQuestion [ ] {
14
- return [ AngelicaCQuiz . makeQuestion0 ( ) , AngelicaCQuiz . makeQuestion1 ( ) , AngelicaCQuiz . makeQuestion2 ( ) ] ;
14
+ return [
15
+ AngelicaCQuiz . makeQuestion0 ( ) ,
16
+ AngelicaCQuiz . makeQuestion1 ( ) ,
17
+ AngelicaCQuiz . makeQuestion2 ( ) ,
18
+ ] ;
15
19
}
16
20
17
21
private static makeQuestion0 ( ) : QuizQuestion {
@@ -21,10 +25,7 @@ export class AngelicaCQuiz implements QuizQuestionProvider {
21
25
new Map < AnswerChoice , string > ( [
22
26
[ AnswerChoice . A , 'Central Processing Unit' ] ,
23
27
[ AnswerChoice . B , 'Central Program Unit' ] ,
24
- [
25
- AnswerChoice . C ,
26
- 'Center Program Unit' ,
27
- ] ,
28
+ [ AnswerChoice . C , 'Center Program Unit' ] ,
28
29
[ AnswerChoice . D , 'Whatever you want it to be!' ] ,
29
30
] ) ,
30
31
AnswerChoice . UNANSWERED ,
@@ -37,10 +38,7 @@ export class AngelicaCQuiz implements QuizQuestionProvider {
37
38
new Map < AnswerChoice , string > ( [
38
39
[ AnswerChoice . A , 'RAM' ] ,
39
40
[ AnswerChoice . B , 'CPU' ] ,
40
- [
41
- AnswerChoice . C ,
42
- 'CASE' ,
43
- ] ,
41
+ [ AnswerChoice . C , 'CASE' ] ,
44
42
[ AnswerChoice . D , 'HARD DRIVE' ] ,
45
43
] ) ,
46
44
AnswerChoice . UNANSWERED ,
@@ -53,10 +51,7 @@ export class AngelicaCQuiz implements QuizQuestionProvider {
53
51
new Map < AnswerChoice , string > ( [
54
52
[ AnswerChoice . A , 'Mother board' ] ,
55
53
[ AnswerChoice . B , 'Hard drive' ] ,
56
- [
57
- AnswerChoice . C ,
58
- 'Power supply' ,
59
- ] ,
54
+ [ AnswerChoice . C , 'Power supply' ] ,
60
55
[ AnswerChoice . D , 'Computer' ] ,
61
56
] ) ,
62
57
AnswerChoice . UNANSWERED ,
0 commit comments