Skip to content

Commit

Permalink
add quiz questions
Browse files Browse the repository at this point in the history
  • Loading branch information
suhas-arun committed Feb 4, 2024
1 parent f24fa74 commit a4beb51
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions frontend/handemonium/src/questions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,33 @@ export const questions: QuestionType[] = [
{ text: "Optical Sensor", isCorrect: false },
],
},
{
question: "What language does Node.js use?",
options: [
{ text: "Java", isCorrect: false },
{ text: "C++", isCorrect: false },
{ text: "Python", isCorrect: false },
{ text: "JavaScript", isCorrect: true },
],
},
{
question: "What is the full form of HTML?",
options: [
{ text: "Hyperlink and Text Markup Language", isCorrect: false },
{ text: "Hyper Text Markup Language", isCorrect: true },
{ text: "Home Tool Markup Language", isCorrect: false },
{ text: "Hyper Tool Markup Language", isCorrect: false },
]
}
{
question: "What does RISC stand for?",
options: [
{ text: "Reduced Instruction Set Code", isCorrect: false },
{ text: "Reduced Instruction Set Compiler", isCorrect: false },
{ text: "Reduced Instruction Set Control", isCorrect: false },
{ text: "Reduced Instruction Set Computer", isCorrect: true },
]
}
];

export function getCorrectAnswer(
Expand Down

0 comments on commit a4beb51

Please sign in to comment.