7
7
8
8
export class PabloLimonParedesQuiz implements QuizQuestionProvider {
9
9
getProviderName ( ) : string {
10
- return 'pablolimonparedes ' ;
10
+ return 'PabloLimonParedes ' ;
11
11
}
12
12
13
13
makeQuizQuestions ( ) : QuizQuestion [ ] {
@@ -21,28 +21,28 @@ export class PabloLimonParedesQuiz implements QuizQuestionProvider {
21
21
private static makeQuestion0 ( ) : QuizQuestion {
22
22
return new MultipleChoiceQuizQuestion (
23
23
0 ,
24
- 'What does " git checkout -b branch" command do?' ,
24
+ 'What does git checkout -b branch command do?' ,
25
25
new Map < AnswerChoice , string > ( [
26
26
[ AnswerChoice . A , 'Creates a pull request' ] ,
27
27
[ AnswerChoice . B , 'Creates a new branch and switches you to it' ] ,
28
28
[ AnswerChoice . C , 'To move to another branch' ] ,
29
29
[ AnswerChoice . D , 'Delete a branch' ] ,
30
30
] ) ,
31
- AnswerChoice . UNANSWERED ,
31
+ AnswerChoice . B ,
32
32
) ; // Replace `UNANSWERED` with the correct answer.
33
33
}
34
34
35
35
private static makeQuestion1 ( ) : QuizQuestion {
36
36
return new MultipleChoiceQuizQuestion (
37
37
0 ,
38
- 'What does the " man git" command do?' ,
38
+ 'What does the man git command do?' ,
39
39
new Map < AnswerChoice , string > ( [
40
40
[ AnswerChoice . A , 'Create a new directory' ] ,
41
41
[ AnswerChoice . B , 'Shows history of commands' ] ,
42
42
[ AnswerChoice . C , 'Get to main branch' ] ,
43
43
[ AnswerChoice . D , 'Access the manual for git' ] ,
44
44
] ) ,
45
- AnswerChoice . UNANSWERED ,
45
+ AnswerChoice . D ,
46
46
) ; // Replace `UNANSWERED` with the correct answer.
47
47
}
48
48
private static makeQuestion2 ( ) : QuizQuestion {
@@ -55,7 +55,7 @@ export class PabloLimonParedesQuiz implements QuizQuestionProvider {
55
55
[ AnswerChoice . C , 'command + shift + P' ] ,
56
56
[ AnswerChoice . D , 'command + T' ] ,
57
57
] ) ,
58
- AnswerChoice . UNANSWERED ,
58
+ AnswerChoice . A ,
59
59
) ; // Replace `UNANSWERED` with the correct answer.
60
60
}
61
61
}
0 commit comments