Skip to content

Commit bcdb7bc

Browse files
committed
changes made and saved
1 parent a491731 commit bcdb7bc

File tree

2 files changed

+8
-78
lines changed

2 files changed

+8
-78
lines changed

lesson_03/quiz/src/quizzes/angelica_c_quiz.ts

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ export class AngelicaCQuiz implements QuizQuestionProvider {
1111
}
1212

1313
makeQuizQuestions(): QuizQuestion[] {
14-
return [AngelicaCQuiz.makeQuestion0(), AngelicaCQuiz.makeQuestion1(), AngelicaCQuiz.makeQuestion2()];
14+
return [
15+
AngelicaCQuiz.makeQuestion0(),
16+
AngelicaCQuiz.makeQuestion1(),
17+
AngelicaCQuiz.makeQuestion2(),
18+
];
1519
}
1620

1721
private static makeQuestion0(): QuizQuestion {
@@ -21,10 +25,7 @@ export class AngelicaCQuiz implements QuizQuestionProvider {
2125
new Map<AnswerChoice, string>([
2226
[AnswerChoice.A, 'Central Processing Unit'],
2327
[AnswerChoice.B, 'Central Program Unit'],
24-
[
25-
AnswerChoice.C,
26-
'Center Program Unit',
27-
],
28+
[AnswerChoice.C,'Center Program Unit'],
2829
[AnswerChoice.D, 'Whatever you want it to be!'],
2930
]),
3031
AnswerChoice.UNANSWERED,
@@ -37,10 +38,7 @@ export class AngelicaCQuiz implements QuizQuestionProvider {
3738
new Map<AnswerChoice, string>([
3839
[AnswerChoice.A, 'RAM'],
3940
[AnswerChoice.B, 'CPU'],
40-
[
41-
AnswerChoice.C,
42-
'CASE',
43-
],
41+
[AnswerChoice.C,'CASE'],
4442
[AnswerChoice.D, 'HARD DRIVE'],
4543
]),
4644
AnswerChoice.UNANSWERED,
@@ -53,10 +51,7 @@ export class AngelicaCQuiz implements QuizQuestionProvider {
5351
new Map<AnswerChoice, string>([
5452
[AnswerChoice.A, 'Mother board'],
5553
[AnswerChoice.B, 'Hard drive'],
56-
[
57-
AnswerChoice.C,
58-
'Power supply',
59-
],
54+
[AnswerChoice.C,'Power supply'],
6055
[AnswerChoice.D, 'Computer'],
6156
]),
6257
AnswerChoice.UNANSWERED,

lesson_03/quiz/src/quizzes/angelica_castillo_quiz.ts

Lines changed: 0 additions & 65 deletions
This file was deleted.

0 commit comments

Comments
 (0)