You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lesson_03/quiz/src/quizzes/karen_alabi_quiz.ts
+31-13Lines changed: 31 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -25,9 +25,7 @@ export class KarensQuiz implements QuizQuestionProvider {
25
25
newMap<AnswerChoice,string>([
26
26
[AnswerChoice.A,'Graphical Processing Unit'],
27
27
[AnswerChoice.B,'Gaming Processing Unit'],
28
-
[
29
-
AnswerChoice.C,'General Preserving Unit',
30
-
],
28
+
[AnswerChoice.C,'General Preserving Unit'],
31
29
[AnswerChoice.D,'George P. Underwood'],
32
30
]),
33
31
AnswerChoice.UNANSWERED,
@@ -40,10 +38,18 @@ export class KarensQuiz implements QuizQuestionProvider {
40
38
'Which of the following best describes a computer?',
41
39
newMap<AnswerChoice,string>([
42
40
[AnswerChoice.A,'Karen from Spongebob'],
43
-
[AnswerChoice.B,
44
-
'A machine that automatically transforms input data into output data using pre-programmed instructions',],
45
-
[AnswerChoice.C,'A high-tech calculator that only performs basic arithmetic operations like addition and subtraction, making it useful only for solving math problems',],
46
-
[AnswerChoice.D,'A microwave with a keyboard that heats up data instead of food'],
41
+
[
42
+
AnswerChoice.B,
43
+
'A machine that automatically transforms input data into output data using pre-programmed instructions',
44
+
],
45
+
[
46
+
AnswerChoice.C,
47
+
'A high-tech calculator that only performs basic arithmetic operations like addition and subtraction, making it useful only for solving math problems',
48
+
],
49
+
[
50
+
AnswerChoice.D,
51
+
'A microwave with a keyboard that heats up data instead of food',
52
+
],
47
53
]),
48
54
AnswerChoice.UNANSWERED,
49
55
);// Provide the correct answer.
@@ -54,12 +60,24 @@ export class KarensQuiz implements QuizQuestionProvider {
54
60
2,
55
61
'What is the motherboard?',
56
62
newMap<AnswerChoice,string>([
57
-
[AnswerChoice.A,'A big chip that controls how fast your computer runs.'],
58
-
[AnswerChoice.B,'The part of the computer that generates electricity to power all the other components.'],
59
-
[AnswerChoice.C,'The main circuit board of a computer that houses the CPU, memory, and other essential components.'],
60
-
[AnswerChoice.D,'The board that a mother uses to control the computer.'],
63
+
[
64
+
AnswerChoice.A,
65
+
'A big chip that controls how fast your computer runs.',
66
+
],
67
+
[
68
+
AnswerChoice.B,
69
+
'The part of the computer that generates electricity to power all the other components.',
70
+
],
71
+
[
72
+
AnswerChoice.C,
73
+
'The main circuit board of a computer that houses the CPU, memory, and other essential components.',
74
+
],
75
+
[
76
+
AnswerChoice.D,
77
+
'The board that a mother uses to control the computer.',
0 commit comments