Skip to content

Commit 888d506

Browse files
committed
New Proper Course Questions
1 parent ebdbff7 commit 888d506

File tree

1 file changed

+45
-45
lines changed

1 file changed

+45
-45
lines changed

lesson_03/quiz/src/quizzes/devyn_benson_quiz.ts

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ export class DevynBensonQuiz implements QuizQuestionProvider {
2828
private static makeQuestion0(): QuizQuestion {
2929
return new MultipleChoiceQuizQuestion(
3030
0,
31-
'What kind of dog does Mr. Mays have?',
31+
'What command is used to initialize a new Git repository?',
3232
new Map<AnswerChoice, string>([
33-
[AnswerChoice.A, 'A Weiner Dog'],
34-
[AnswerChoice.B, 'Yorkshire Terrier'],
35-
[AnswerChoice.C, 'A Golden Retriever'],
36-
[AnswerChoice.D, 'Schnauzer'],
33+
[AnswerChoice.A, 'git start'],
34+
[AnswerChoice.B, 'git create'],
35+
[AnswerChoice.C, 'git new'],
36+
[AnswerChoice.D, 'git init'],
3737
]),
3838
AnswerChoice.UNANSWERED,
3939
); // Replace `UNANSWERED` with the correct answer.
@@ -42,12 +42,12 @@ export class DevynBensonQuiz implements QuizQuestionProvider {
4242
private static makeQuestion1(): QuizQuestion {
4343
return new MultipleChoiceQuizQuestion(
4444
1,
45-
'Answer the blank, which is false? : Mr. Mays is very _____.',
45+
'Which of the following is NOT a basic data type in most programming languages?',
4646
new Map<AnswerChoice, string>([
47-
[AnswerChoice.A, 'Tall'],
48-
[AnswerChoice.B, 'Handsome'],
49-
[AnswerChoice.C, 'Smart'],
50-
[AnswerChoice.D, 'Evil'],
47+
[AnswerChoice.A, 'Integer'],
48+
[AnswerChoice.B, 'String'],
49+
[AnswerChoice.C, 'Boolean'],
50+
[AnswerChoice.D, 'Repository'],
5151
]),
5252
AnswerChoice.UNANSWERED,
5353
); // Replace `UNANSWERED` with the correct answer.
@@ -70,51 +70,51 @@ export class DevynBensonQuiz implements QuizQuestionProvider {
7070
private static makeQuestion3(): QuizQuestion {
7171
return new MultipleChoiceQuizQuestion(
7272
3,
73-
'What color is the sky?',
73+
'What is the basic unit of computer memory?',
7474
new Map<AnswerChoice, string>([
75-
[AnswerChoice.A, 'Blue'],
76-
[AnswerChoice.B, 'Violet'],
77-
[AnswerChoice.C, 'Yellow'],
78-
[AnswerChoice.D, 'Red'],
75+
[AnswerChoice.A, 'Bit'],
76+
[AnswerChoice.B, 'Byte'],
77+
[AnswerChoice.C, 'Word'],
78+
[AnswerChoice.D, 'Block'],
7979
]),
8080
AnswerChoice.UNANSWERED,
8181
); // Replace `UNANSWERED` with the correct answer.
8282
}
8383
private static makeQuestion4(): QuizQuestion {
8484
return new MultipleChoiceQuizQuestion(
8585
4,
86-
'How many students are in Cohort 25.2?',
86+
'What does CPU stand for?',
8787
new Map<AnswerChoice, string>([
88-
[AnswerChoice.A, '24'],
89-
[AnswerChoice.B, '28'],
90-
[AnswerChoice.C, '27'],
91-
[AnswerChoice.D, '23'],
88+
[AnswerChoice.A, 'Computer Processing Unit'],
89+
[AnswerChoice.B, 'Central Program Unit'],
90+
[AnswerChoice.C, 'Core Processing Unit'],
91+
[AnswerChoice.D, 'Central Processing Unit'],
9292
]),
9393
AnswerChoice.UNANSWERED,
9494
); // Replace `UNANSWERED` with the correct answer.
9595
}
9696
private static makeQuestion5(): QuizQuestion {
9797
return new MultipleChoiceQuizQuestion(
9898
5,
99-
'What did Mr. Mays eat from the food truck on 08/13/25?',
99+
'Which Git command is used to create a new branch?',
100100
new Map<AnswerChoice, string>([
101-
[AnswerChoice.A, 'Cheeseteak'],
102-
[AnswerChoice.B, 'Tacos'],
103-
[AnswerChoice.C, 'Chicken Katsu'],
104-
[AnswerChoice.D, 'Loaded Fries w/ brisket'],
101+
[AnswerChoice.A, 'git new-branch'],
102+
[AnswerChoice.B, 'git create-branch'],
103+
[AnswerChoice.C, 'git make-branch'],
104+
[AnswerChoice.D, 'git branch'],
105105
]),
106106
AnswerChoice.UNANSWERED,
107107
); // Replace `UNANSWERED` with the correct answer.
108108
}
109109
private static makeQuestion6(): QuizQuestion {
110110
return new MultipleChoiceQuizQuestion(
111111
6,
112-
'Who did Devyn introduce for the first tech talk?',
112+
'What is the main purpose of GitHub?',
113113
new Map<AnswerChoice, string>([
114-
[AnswerChoice.A, 'Sadiq Hook'],
115-
[AnswerChoice.B, 'Terrance Bowman'],
116-
[AnswerChoice.C, 'Tarik Hook '],
117-
[AnswerChoice.D, 'Tariq Hook'],
114+
[AnswerChoice.A, 'Social networking'],
115+
[AnswerChoice.B, 'Online shopping'],
116+
[AnswerChoice.C, 'Video streaming'],
117+
[AnswerChoice.D, 'Code hosting and version control'],
118118
]),
119119
AnswerChoice.UNANSWERED,
120120
); // Replace `UNANSWERED` with the correct answer.
@@ -123,12 +123,12 @@ export class DevynBensonQuiz implements QuizQuestionProvider {
123123
private static makeQuestion7(): QuizQuestion {
124124
return new MultipleChoiceQuizQuestion(
125125
7,
126-
'How should you brush your teeth?',
126+
'Which component is considered the "brain" of the computer?',
127127
new Map<AnswerChoice, string>([
128-
[AnswerChoice.A, 'With no brush'],
129-
[AnswerChoice.B, 'With a Brush, Toothpaste, and Water'],
130-
[AnswerChoice.C, 'With Water and a Brush'],
131-
[AnswerChoice.D, 'With a Brush'],
128+
[AnswerChoice.A, 'RAM'],
129+
[AnswerChoice.B, 'CPU'],
130+
[AnswerChoice.C, 'Hard Drive'],
131+
[AnswerChoice.D, 'Motherboard'],
132132
]),
133133
AnswerChoice.UNANSWERED,
134134
); // Replace `UNANSWERED` with the correct answer.
@@ -137,12 +137,12 @@ export class DevynBensonQuiz implements QuizQuestionProvider {
137137
private static makeQuestion8(): QuizQuestion {
138138
return new MultipleChoiceQuizQuestion(
139139
8,
140-
'What is Mr. Mays\'nickname?' ,
140+
'In programming, what does "debugging" mean?',
141141
new Map<AnswerChoice, string>([
142-
[AnswerChoice.A, 'Money Mays'],
143-
[AnswerChoice.B, 'Ant Man'],
144-
[AnswerChoice.C, 'Compton Google'],
145-
[AnswerChoice.D, 'Zoogler'],
142+
[AnswerChoice.A, 'Writing new code'],
143+
[AnswerChoice.B, 'Deleting old files'],
144+
[AnswerChoice.C, 'Finding and fixing errors in code'],
145+
[AnswerChoice.D, 'Compiling code'],
146146
]),
147147
AnswerChoice.UNANSWERED,
148148
); // Replace `UNANSWERED` with the correct answer.
@@ -151,12 +151,12 @@ export class DevynBensonQuiz implements QuizQuestionProvider {
151151
private static makeQuestion9(): QuizQuestion {
152152
return new MultipleChoiceQuizQuestion(
153153
9,
154-
'What team does Jordan Eldrige ',
154+
'What does RAM stand for in computer architecture?',
155155
new Map<AnswerChoice, string>([
156-
[AnswerChoice.A, 'Commanders'],
157-
[AnswerChoice.B, 'Pitsburgh'],
158-
[AnswerChoice.C, 'Cowboys (aka Cowgirls)'],
159-
[AnswerChoice.D, 'Eagles'],
156+
[AnswerChoice.A, 'Read Access Memory'],
157+
[AnswerChoice.B, 'Rapid Application Memory'],
158+
[AnswerChoice.C, 'Remote Access Module'],
159+
[AnswerChoice.D, 'Random Access Memory'],
160160
]),
161161
AnswerChoice.UNANSWERED,
162162
); // Replace `UNANSWERED` with the correct answer.

0 commit comments

Comments
 (0)