-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
69 lines (68 loc) · 1.7 KB
/
data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
const quizQuestions = [
{
question: "What is the capital of Japan?",
choices: ["Beijing", "Tokyo", "Seoul", "Bangkok"],
correctAnswer: "Tokyo",
},
{
question: "Which planet is known as the Red Planet?",
choices: ["Mars", "Venus", "Jupiter", "Saturn"],
correctAnswer: "Mars",
},
{
question: "In what year did the Titanic sink?",
choices: ["1912", "1905", "1920", "1931"],
correctAnswer: "1912",
},
{
question: "Who wrote 'Romeo and Juliet'?",
choices: [
"Charles Dickens",
"Jane Austen",
"William Shakespeare",
"Mark Twain",
],
correctAnswer: "William Shakespeare",
},
{
question: "Which element has the chemical symbol 'O'?",
choices: ["Oxygen", "Gold", "Iron", "Silver"],
correctAnswer: "Oxygen",
},
{
question: "What is the largest mammal in the world?",
choices: ["Elephant", "Blue Whale", "Giraffe", "Hippopotamus"],
correctAnswer: "Blue Whale",
},
{
question: "Who painted the Mona Lisa?",
choices: [
"Vincent van Gogh",
"Pablo Picasso",
"Leonardo da Vinci",
"Claude Monet",
],
correctAnswer: "Leonardo da Vinci",
},
{
question: "Which country is known as the Land of the Rising Sun?",
choices: ["China", "India", "Japan", "South Korea"],
correctAnswer: "Japan",
},
{
question: "What is the square root of 144?",
choices: ["10", "12", "14", "16"],
correctAnswer: "12",
},
{
question: "Who developed the theory of relativity?",
choices: [
"Isaac Newton",
"Albert Einstein",
"Galileo Galilei",
"Stephen Hawking",
],
correctAnswer: "Albert Einstein",
},
];
module.exports = quizQuestions;