Skip to content

Commit

Permalink
feat:lesson_03 quiz configured
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron2278 committed Mar 7, 2024
1 parent 2898dc7 commit a5d4274
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public String getProviderName() {
}

public List<QuizQuestion> makeQuizQuestions() {
return List.of(makeQuestion0(), makeQuestion1(), makeQuestion2());
return List.of(makeQuestion0(), makeQuestion1());
}

private QuizQuestion makeQuestion0() {
Expand All @@ -38,18 +38,6 @@ private QuizQuestion makeQuestion0() {
private QuizQuestion makeQuestion1() {
return new MultipleChoiceQuizQuestion(
1,
"A byte is made up of how many bits?",
Map.of(
AnswerChoice.A, "8",
AnswerChoice.B, "2",
AnswerChoice.C, "4",
AnswerChoice.D, "12"),
AnswerChoice.UNANSWERED);
}

private QuizQuestion makeQuestion2() {
return new MultipleChoiceQuizQuestion(
2,
"Which data type is used to represent textual data in Java?",
Map.of(
AnswerChoice.A, "int",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,7 @@ quiz:
- $2y$10$ixh3kgGd8tFk0fBH4sr2JO87LncX88lqJGwVauc182Nug8IeHaJ7i
jamirabailey:
- $2y$10$aJtp4qJqWNrm6K.RXYv9uOByboSWbCqEKOrOHS8S/nP8zjn96LnEG
- $2y$10$37XykzTG1nmwxZOjOwIBJ.QehwGuIsEPOjrl5FNEhk2ZWBwrJmitm
- $2y$10$37XykzTG1nmwxZOjOwIBJ.QehwGuIsEPOjrl5FNEhk2ZWBwrJmitm
aaronsantiago:
- $2y$10$QFzEBrwDmU2HP42i4fhcH.XKXHb5hw56bpQJ1l23LsgZqtMjptCdm
- $2y$10$vldOhuX/.5WcqZRxQiilAeeDsyNGqFGE.zl1Fd22Nx.baomFvgbV6

0 comments on commit a5d4274

Please sign in to comment.