@@ -5,19 +5,22 @@ import {
55 QuizQuestionProvider ,
66} from 'codedifferently-instructional' ;
77
8- export class khayla_quiz implements QuizQuestionProvider {
8+ export class KhaylaSaundersQuiz implements QuizQuestionProvider {
99 getProviderName ( ) : string {
10- return 'khayla_quiz ' ;
10+ return 'khaylasaunders ' ;
1111 }
1212
1313 makeQuizQuestions ( ) : QuizQuestion [ ] {
14- return [ khayla_saundersquiz . makeQuestion0 ( ) , khayla_quiz . makeQuestion1 ( ) ] ;
14+ return [
15+ KhaylaSaundersQuiz . makeQuestion0 ( ) ,
16+ KhaylaSaundersQuiz . makeQuestion1 ( ) ,
17+ ] ;
1518 }
1619
1720 private static makeQuestion0 ( ) : QuizQuestion {
1821 return new MultipleChoiceQuizQuestion (
1922 0 ,
20- 'Your team is working on a shared Git repository. Which of the following is not the best practices to follow for smooth collaboration?' ,
23+ 'Your team is working on a shared Git repository. Which of the following is not the best practice to follow for smooth collaboration?' ,
2124 new Map < AnswerChoice , string > ( [
2225 [ AnswerChoice . A , 'Always pull before pushing to avoid conflicts.' ] ,
2326 [
@@ -30,7 +33,7 @@ export class khayla_quiz implements QuizQuestionProvider {
3033 'Use Git stash to temporarily save uncommitted changes. ' ,
3134 ] ,
3235 ] ) ,
33- AnswerChoice . UNANSWERED ,
36+ AnswerChoice . B ,
3437 ) ; // Replace `UNANSWERED` with the correct answer.
3538 }
3639
@@ -50,7 +53,7 @@ export class khayla_quiz implements QuizQuestionProvider {
5053 ] ,
5154 [ AnswerChoice . D , 'When you need to undo the last commit ' ] ,
5255 ] ) ,
53- AnswerChoice . UNANSWERED ,
56+ AnswerChoice . A ,
5457 ) ; // Replace `UNANSWERED` with the correct answer.
5558 }
5659 private static makeQuestion2 ( ) : QuizQuestion {
@@ -63,7 +66,7 @@ export class khayla_quiz implements QuizQuestionProvider {
6366 [ AnswerChoice . C , 'Supersets' ] ,
6467 [ AnswerChoice . D , 'Git' ] ,
6568 ] ) ,
66- AnswerChoice . UNANSWERED ,
69+ AnswerChoice . A ,
6770 ) ; // Replace `UNANSWERED` with the correct answer.
6871 }
6972}
0 commit comments