-
Notifications
You must be signed in to change notification settings - Fork 25
feat: create test questions for Angie #109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
6b3c963
answers to test
angie-3 d9e4908
Merge branch 'main' into lesson03_new
angie-3 4e3e90c
Merge branch 'main' into lesson03_new
angie-3 600f97f
fix: rename class and file
angie-3 a491731
Merge branch 'lesson03_new' of https://github.com/angie-3/code-differ…
angie-3 e80f274
chore: eelete lesson_03/quiz/src/quizzes/angelica_castillo_quiz.ts
anthonydmays bcdb7bc
changes made and saved
angie-3 830f20b
Merge branch 'lesson03_new' of https://github.com/angie-3/code-differ…
angie-3 4e30d6b
Merge branch 'code-differently:main' into lesson03_new
angie-3 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
import { | ||
AnswerChoice, | ||
MultipleChoiceQuizQuestion, | ||
QuizQuestion, | ||
QuizQuestionProvider, | ||
} from 'codedifferently-instructional'; | ||
|
||
export class angelicaCquiz implements QuizQuestionProvider { | ||
angie-3 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
getProviderName(): string { | ||
return 'angelicacastillo'; | ||
} | ||
|
||
makeQuizQuestions(): QuizQuestion[] { | ||
return [angelicaCquiz.makeQuestion0(), angelicaCquiz.makeQuestion1(), angelicaCquiz.makeQuestion2()]; | ||
} | ||
|
||
private static makeQuestion0(): QuizQuestion { | ||
return new MultipleChoiceQuizQuestion( | ||
0, | ||
'What does CPU stand for?', | ||
new Map<AnswerChoice, string>([ | ||
[AnswerChoice.A, 'Central Processing Unit'], | ||
[AnswerChoice.B, 'Central Program Unit'], | ||
[ | ||
AnswerChoice.C, | ||
'Center Program Unit', | ||
], | ||
[AnswerChoice.D, 'Whatever you want it to be!'], | ||
]), | ||
AnswerChoice.UNANSWERED, | ||
); // Replace `UNANSWERED` with the correct answer. | ||
} | ||
private static makeQuestion1(): QuizQuestion { | ||
return new MultipleChoiceQuizQuestion( | ||
1, | ||
'Which of the following would be a "simple" essential part of the computer?', | ||
new Map<AnswerChoice, string>([ | ||
[AnswerChoice.A, 'RAM'], | ||
[AnswerChoice.B, 'CPU'], | ||
[ | ||
AnswerChoice.C, | ||
'CASE', | ||
], | ||
[AnswerChoice.D, 'HARD DRIVE'], | ||
]), | ||
AnswerChoice.UNANSWERED, | ||
); // Replace `UNANSWERED` with the correct answer. | ||
} | ||
private static makeQuestion2(): QuizQuestion { | ||
return new MultipleChoiceQuizQuestion( | ||
2, | ||
'What would be considered the brains long term memory?', | ||
new Map<AnswerChoice, string>([ | ||
[AnswerChoice.A, 'Mother board'], | ||
[AnswerChoice.B, 'Hard drive'], | ||
[ | ||
AnswerChoice.C, | ||
'Power supply', | ||
], | ||
[AnswerChoice.D, 'Computer'], | ||
]), | ||
AnswerChoice.UNANSWERED, | ||
); // Replace `UNANSWERED` with the correct answer. | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.