We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1d75b3 commit cc16418Copy full SHA for cc16418
lesson_03/quiz/src/quizzes/amiyah_jones_quiz.ts
@@ -49,15 +49,9 @@ export class AmiyahJonesQuiz implements QuizQuestionProvider {
49
private static makeQuestion2(): QuizQuestion {
50
return new MultipleChoiceQuizQuestion(
51
2,
52
- 'Which computer part houses everything?',
53
- new Map<AnswerChoice, string>([
54
- [AnswerChoice.A, 'Hard drive'],
55
- [AnswerChoice.B, 'Case'],
56
- [AnswerChoice.C, 'CPU'],
57
- [AnswerChoice.D, 'Power supply'],
58
- ]),
59
- AnswerChoice.UNANSWERED,
60
- ); // Replace `UNANSWERED` with the correct answer.
+ 'What is a computer?',
+ 'A machine that automatically transforms input into output.',
+ ); // Provide an answer.
61
}
62
63
0 commit comments