diff --git a/webapp/public/questions.json b/webapp/public/questions.json index 23e2c8e..309f5df 100644 --- a/webapp/public/questions.json +++ b/webapp/public/questions.json @@ -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 } ] } \ No newline at end of file