@@ -5,55 +5,57 @@ import {
5
5
QuizQuestionProvider ,
6
6
} from 'codedifferently-instructional' ;
7
7
8
- export class DavisDQuiz implements QuizQuestionProvider {
8
+ export class DavisQuiz implements QuizQuestionProvider {
9
9
getProviderName ( ) : string {
10
- return 'DavisD ' ;
10
+ return 'DavisDarius ' ;
11
11
}
12
12
13
13
makeQuizQuestions ( ) : QuizQuestion [ ] {
14
14
return [
15
- DavisDQuiz . makeQuestion1 ( ) ,
16
- DavisDQuiz . makeQuestion2 ( ) ,
17
- DavisDQuiz . makeQuestion3 ( ) ,
15
+ DavisQuiz . makeQuestion0 ( ) ,
16
+ DavisQuiz . makeQuestion1 ( ) ,
17
+ DavisQuiz . makeQuestion2 ( ) ,
18
18
] ;
19
19
}
20
20
21
- private static makeQuestion1 ( ) : QuizQuestion {
21
+ private static makeQuestion0 ( ) : QuizQuestion {
22
22
return new MultipleChoiceQuizQuestion (
23
- 1 ,
24
- 'What is the best hairstlye ?' ,
23
+ 0 ,
24
+ 'What should you not be doing during a Tech Talk ?' ,
25
25
new Map < AnswerChoice , string > ( [
26
- [ AnswerChoice . A , 'Waves/Lowcut ' ] ,
27
- [ AnswerChoice . B , 'Locs or Twists ' ] ,
28
- [ AnswerChoice . C , 'Afro/HighTop ' ] ,
29
- [ AnswerChoice . D , 'The Mullet ' ] ,
26
+ [ AnswerChoice . A , 'Talk Amongst Friends ' ] ,
27
+ [ AnswerChoice . B , 'Take Notes ' ] ,
28
+ [ AnswerChoice . C , 'Ask speaker questions ' ] ,
29
+ [ AnswerChoice . D , 'Be attentive ' ] ,
30
30
] ) ,
31
31
AnswerChoice . A ,
32
32
) ; // Replace `UNANSWERED` with the correct answer.
33
33
}
34
34
35
- private static makeQuestion2 ( ) : QuizQuestion {
35
+ private static makeQuestion1 ( ) : QuizQuestion {
36
36
return new MultipleChoiceQuizQuestion (
37
- 2 ,
38
- 'Are Hotdogs Sandwhiches? ' ,
37
+ 1 ,
38
+ '3 Levels of Tech Talk ' ,
39
39
new Map < AnswerChoice , string > ( [
40
- [ AnswerChoice . A , 'No' ] ,
41
- [ AnswerChoice . B , 'Yes' ] ,
40
+ [ AnswerChoice . A , 'Push, Pull, Punch' ] ,
41
+ [ AnswerChoice . B , 'Pay, Listen, Persuade' ] ,
42
+ [ AnswerChoice . C , 'Purpose, Prep, Show-up' ] ,
42
43
] ) ,
43
- AnswerChoice . A ,
44
+ AnswerChoice . C ,
44
45
) ; // Provide an answer.
45
46
}
46
47
47
- private static makeQuestion3 ( ) : QuizQuestion {
48
+ private static makeQuestion2 ( ) : QuizQuestion {
48
49
return new MultipleChoiceQuizQuestion (
49
- 3 ,
50
- 'If we flip a coin... ?' ,
50
+ 2 ,
51
+ 'During Tech Talks should you be marketing yourself to secure a job ?' ,
51
52
new Map < AnswerChoice , string > ( [
52
- [ AnswerChoice . A , 'Heads' ] ,
53
- [ AnswerChoice . B , 'Tails' ] ,
54
- [ AnswerChoice . C , 'Both' ] ,
53
+ [ AnswerChoice . A , 'No' ] ,
54
+ [ AnswerChoice . B , 'Yes' ] ,
55
+ [ AnswerChoice . C , 'Maybe' ] ,
56
+ [ AnswerChoice . D , 'IDK' ] ,
55
57
] ) ,
56
- AnswerChoice . C ,
58
+ AnswerChoice . B ,
57
59
) ; // Replace `UNANSWERED` with the correct answer.
58
60
}
59
61
}
0 commit comments