Skip to content

Commit

Permalink
question fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Alberto-Guerra committed Mar 7, 2024
1 parent 7c471dc commit a2360f2
Showing 1 changed file with 21 additions and 10 deletions.
31 changes: 21 additions & 10 deletions webapp/public/questions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,43 +2,54 @@
"questions":[
{
"question": "What is the capital of France?",
"answers": ["London", "Paris", "Berlin", "Madrid"]
"answers": ["London", "Paris", "Berlin", "Madrid"],
"correctIndex": 1

},
{
"question": "Who wrote 'Romeo and Juliet'?",
"answers": ["William Shakespeare", "Charles Dickens", "Jane Austen", "Emily Brontë"]
"answers": ["William Shakespeare", "Charles Dickens", "Jane Austen", "Emily Brontë"],
"correctIndex": 0
},
{
"question": "What is the largest mammal?",
"answers": ["Elephant", "Blue whale", "Giraffe", "Hippopotamus"]
"answers": ["Elephant", "Blue whale", "Giraffe", "Hippopotamus"],
"correctIndex": 1
},
{
"question": "Which planet is known as the Red Planet?",
"answers": ["Venus", "Mars", "Jupiter", "Saturn"]
"answers": ["Venus", "Mars", "Jupiter", "Saturn"],
"correctIndex": 1
},
{
"question": "What is the chemical symbol for water?",
"answers": ["H2O", "CO2", "NaCl", "O2"]
"answers": ["H2O", "CO2", "NaCl", "O2"],
"correctIndex": 0
},
{
"question": "Who painted the Mona Lisa?",
"answers": ["Leonardo da Vinci", "Vincent van Gogh", "Pablo Picasso", "Michelangelo"]
"answers": ["Leonardo da Vinci", "Vincent van Gogh", "Pablo Picasso", "Michelangelo"],
"correctIndex": 0
},
{
"question": "Which is the largest ocean on Earth?",
"answers": ["Atlantic Ocean", "Indian Ocean", "Arctic Ocean", "Pacific Ocean"]
"answers": ["Atlantic Ocean", "Indian Ocean", "Arctic Ocean", "Pacific Ocean"],
"correctIndex": 3
},
{
"question": "What is the main ingredient in guacamole?",
"answers": ["Tomato", "Onion", "Avocado", "Lime"]
"answers": ["Tomato", "Onion", "Avocado", "Lime"],
"correctIndex": 2
},
{
"question": "Who is the creator of Facebook?",
"answers": ["Mark Zuckerberg", "Jeff Bezos", "Bill Gates", "Elon Musk"]
"answers": ["Mark Zuckerberg", "Jeff Bezos", "Bill Gates", "Elon Musk"],
"correctIndex": 0
},
{
"question": "Which bird can fly backwards?",
"answers": ["Hummingbird", "Eagle", "Penguin", "Ostrich"]
"answers": ["Hummingbird", "Eagle", "Penguin", "Ostrich"],
"correctIndex": 0
}
]
}

0 comments on commit a2360f2

Please sign in to comment.