-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestions.js
More file actions
397 lines (393 loc) · 12.8 KB
/
Copy pathquestions.js
File metadata and controls
397 lines (393 loc) · 12.8 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
const initialQuestions = [
{
category: 'Geography',
questionText: 'What is the capital of France?',
answers: [
{ text: 'Paris', isCorrect: true },
{ text: 'London', isCorrect: false },
{ text: 'Berlin', isCorrect: false },
{ text: 'Madrid', isCorrect: false },
],
},
{
category: 'Geography',
questionText: 'What is the largest ocean on Earth?',
answers: [
{ text: 'Atlantic', isCorrect: false },
{ text: 'Indian', isCorrect: false },
{ text: 'Arctic', isCorrect: false },
{ text: 'Pacific', isCorrect: true },
],
},
{
category: 'Geography',
questionText: 'Which country has the most natural lakes?',
answers: [
{ text: 'Canada', isCorrect: true },
{ text: 'USA', isCorrect: false },
{ text: 'Russia', isCorrect: false },
{ text: 'Brazil', isCorrect: false },
],
},
{
category: 'Geography',
questionText: 'Which continent is the Sahara Desert located in?',
answers: [
{ text: 'Asia', isCorrect: false },
{ text: 'Africa', isCorrect: true },
{ text: 'Australia', isCorrect: false },
{ text: 'South America', isCorrect: false },
],
},
{
category: 'Geography',
questionText: 'What is the longest river in the world?',
answers: [
{ text: 'Amazon', isCorrect: false },
{ text: 'Nile', isCorrect: true },
{ text: 'Yangtze', isCorrect: false },
{ text: 'Mississippi', isCorrect: false },
],
},
{
category: 'Science',
questionText: 'Which planet is known as the Red Planet?',
answers: [
{ text: 'Earth', isCorrect: false },
{ text: 'Mars', isCorrect: true },
{ text: 'Jupiter', isCorrect: false },
{ text: 'Venus', isCorrect: false },
],
},
{
category: 'Science',
questionText: 'What is the chemical symbol for water?',
answers: [
{ text: 'O2', isCorrect: false },
{ text: 'H2O', isCorrect: true },
{ text: 'CO2', isCorrect: false },
{ text: 'H2SO4', isCorrect: false },
],
},
{
category: 'Science',
questionText: 'What gas do plants absorb from the atmosphere?',
answers: [
{ text: 'Oxygen', isCorrect: false },
{ text: 'Carbon Dioxide', isCorrect: true },
{ text: 'Nitrogen', isCorrect: false },
{ text: 'Hydrogen', isCorrect: false },
],
},
{
category: 'Science',
questionText: 'What is the hardest natural substance on Earth?',
answers: [
{ text: 'Gold', isCorrect: false },
{ text: 'Iron', isCorrect: false },
{ text: 'Diamond', isCorrect: true },
{ text: 'Platinum', isCorrect: false },
],
},
{
category: 'Science',
questionText: 'What is the chemical symbol for gold?',
answers: [
{ text: 'Au', isCorrect: true },
{ text: 'Ag', isCorrect: false },
{ text: 'Pb', isCorrect: false },
{ text: 'Fe', isCorrect: false },
],
},
{
category: 'History',
questionText: 'Who was the first President of the United States?',
answers: [
{ text: 'Abraham Lincoln', isCorrect: false },
{ text: 'George Washington', isCorrect: true },
{ text: 'Thomas Jefferson', isCorrect: false },
{ text: 'John Adams', isCorrect: false },
],
},
{
category: 'History',
questionText: 'What year did World War II end?',
answers: [
{ text: '1943', isCorrect: false },
{ text: '1944', isCorrect: false },
{ text: '1945', isCorrect: true },
{ text: '1946', isCorrect: false },
],
},
{
category: 'History',
questionText: 'Who was known as the Maid of Orléans?',
answers: [
{ text: 'Marie Antoinette', isCorrect: false },
{ text: 'Joan of Arc', isCorrect: true },
{ text: 'Eleanor of Aquitaine', isCorrect: false },
{ text: 'Catherine de Medici', isCorrect: false },
],
},
{
category: 'History',
questionText: 'What was the name of the ship that brought the Pilgrims to America in 1620?',
answers: [
{ text: 'Mayflower', isCorrect: true },
{ text: 'Santa Maria', isCorrect: false },
{ text: 'Endeavour', isCorrect: false },
{ text: 'Beagle', isCorrect: false },
],
},
{
category: 'History',
questionText: 'Which empire was ruled by Alexander the Great?',
answers: [
{ text: 'Roman Empire', isCorrect: false },
{ text: 'Ottoman Empire', isCorrect: false },
{ text: 'Macedonian Empire', isCorrect: true },
{ text: 'British Empire', isCorrect: false },
],
},
{
category: 'Entertainment',
questionText: 'Which film won the Best Picture Oscar in 2020?',
answers: [
{ text: 'Joker', isCorrect: false },
{ text: 'Parasite', isCorrect: true },
{ text: '1917', isCorrect: false },
{ text: 'Once Upon a Time in Hollywood', isCorrect: false },
],
},
{
category: 'Entertainment',
questionText: 'Who played the character of Harry Potter in the movie series?',
answers: [
{ text: 'Elijah Wood', isCorrect: false },
{ text: 'Daniel Radcliffe', isCorrect: true },
{ text: 'Rupert Grint', isCorrect: false },
{ text: 'Tom Felton', isCorrect: false },
],
},
{
category: 'Entertainment',
questionText: 'Which TV show is known for the phrase "Winter is coming"?',
answers: [
{ text: 'The Witcher', isCorrect: false },
{ text: 'Game of Thrones', isCorrect: true },
{ text: 'Vikings', isCorrect: false },
{ text: 'Stranger Things', isCorrect: false },
],
},
{
category: 'Entertainment',
questionText: 'Who directed the movie "Inception"?',
answers: [
{ text: 'Steven Spielberg', isCorrect: false },
{ text: 'Christopher Nolan', isCorrect: true },
{ text: 'James Cameron', isCorrect: false },
{ text: 'Quentin Tarantino', isCorrect: false },
],
},
{
category: 'Entertainment',
questionText: 'What is the name of the kingdom where the 2013 animated movie "Frozen" is set?',
answers: [
{ text: 'Arendelle', isCorrect: true },
{ text: 'Atlantis', isCorrect: false },
{ text: 'Narnia', isCorrect: false },
{ text: 'Hogwarts', isCorrect: false },
],
},
{
category: 'Literature',
questionText: 'Who wrote "1984"?',
answers: [
{ text: 'George Orwell', isCorrect: true },
{ text: 'Aldous Huxley', isCorrect: false },
{ text: 'Ray Bradbury', isCorrect: false },
{ text: 'Philip K. Dick', isCorrect: false },
],
},
{
category: 'Literature',
questionText: 'Who wrote "Pride and Prejudice"?',
answers: [
{ text: 'Charlotte Brontë', isCorrect: false },
{ text: 'Jane Austen', isCorrect: true },
{ text: 'Emily Brontë', isCorrect: false },
{ text: 'Mary Shelley', isCorrect: false },
],
},
{
category: 'Literature',
questionText: 'Which novel begins with the line "Call me Ishmael"?',
answers: [
{ text: 'Moby-Dick', isCorrect: true },
{ text: 'To Kill a Mockingbird', isCorrect: false },
{ text: 'The Catcher in the Rye', isCorrect: false },
{ text: 'Pride and Prejudice', isCorrect: false },
],
},
{
category: 'Literature',
questionText: 'Who wrote "The Great Gatsby"?',
answers: [
{ text: 'Ernest Hemingway', isCorrect: false },
{ text: 'F. Scott Fitzgerald', isCorrect: true },
{ text: 'John Steinbeck', isCorrect: false },
{ text: 'Mark Twain', isCorrect: false },
],
},
{
category: 'Literature',
questionText: 'Who wrote "Romeo and Juliet"?',
answers: [
{ text: 'William Shakespeare', isCorrect: true },
{ text: 'Jane Austen', isCorrect: false },
{ text: 'Charles Dickens', isCorrect: false },
{ text: 'Emily Brontë', isCorrect: false },
],
},
{
category: 'Technology',
questionText: 'What does CPU stand for?',
answers: [
{ text: 'Computer Personal Unit', isCorrect: false },
{ text: 'Central Processing Unit', isCorrect: true },
{ text: 'Computer Process Unit', isCorrect: false },
{ text: 'Central Personal Unit', isCorrect: false },
],
},
{
category: 'Technology',
questionText: 'What year was the first iPhone released?',
answers: [
{ text: '2005', isCorrect: false },
{ text: '2006', isCorrect: false },
{ text: '2007', isCorrect: true },
{ text: '2008', isCorrect: false },
],
},
{
category: 'Technology',
questionText: 'What does HTML stand for?',
answers: [
{ text: 'Hyperlinks 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 },
],
},
{
category: 'Technology',
questionText: 'What does CSS stand for?',
answers: [
{ text: 'Computing Style Sheet', isCorrect: false },
{ text: 'Creative Style System', isCorrect: false },
{ text: 'Cascading Style Sheet', isCorrect: true },
{ text: 'Computer Style Sheet', isCorrect: false },
],
},
{
category: 'Technology',
questionText: 'Who is the founder of Apple Inc.?',
answers: [
{ text: 'Bill Gates', isCorrect: false },
{ text: 'Steve Jobs', isCorrect: true },
{ text: 'Steve Wozniak', isCorrect: false },
{ text: 'Tim Cook', isCorrect: false },
],
},
{
category: 'Sports',
questionText: 'How many players are there in a rugby league team?',
answers: [
{ text: '11', isCorrect: false },
{ text: '13', isCorrect: true },
{ text: '15', isCorrect: false },
{ text: '9', isCorrect: false },
],
},
{
category: 'Sports',
questionText: 'Which country hosted the first FIFA World Cup in 1930?',
answers: [
{ text: 'Brazil', isCorrect: false },
{ text: 'France', isCorrect: false },
{ text: 'Uruguay', isCorrect: true },
{ text: 'Argentina', isCorrect: false },
],
},
{
category: 'Sports',
questionText: 'How many minutes is a rugby match?',
answers: [
{ text: '60', isCorrect: false },
{ text: '70', isCorrect: false },
{ text: '80', isCorrect: true },
{ text: '90', isCorrect: false },
],
},
{
category: 'Sports',
questionText: 'How many Grand Slam singles titles has Serena Williams won?',
answers: [
{ text: '21', isCorrect: false },
{ text: '23', isCorrect: true },
{ text: '25', isCorrect: false },
{ text: '27', isCorrect: false },
],
},
{
category: 'Sports',
questionText: 'Which country has won the most Olympic gold medals in men\'s hockey?',
answers: [
{ text: 'India', isCorrect: true },
{ text: 'Australia', isCorrect: false },
{ text: 'Netherlands', isCorrect: false },
{ text: 'Germany', isCorrect: false },
],
},
{
category: 'Art',
questionText: 'Who painted the Mona Lisa?',
answers: [
{ text: 'Leonardo da Vinci', isCorrect: true },
{ text: 'Pablo Picasso', isCorrect: false },
{ text: 'Vincent van Gogh', isCorrect: false },
{ text: 'Michelangelo', isCorrect: false },
],
},
{
category: 'Art',
questionText: 'Which artist cut off his own ear?',
answers: [
{ text: 'Pablo Picasso', isCorrect: false },
{ text: 'Vincent van Gogh', isCorrect: true },
{ text: 'Salvador Dalí', isCorrect: false },
{ text: 'Claude Monet', isCorrect: false },
],
},
{
category: 'Art',
questionText: 'Who sculpted the Statue of David?',
answers: [
{ text: 'Michelangelo', isCorrect: true },
{ text: 'Donatello', isCorrect: false },
{ text: 'Leonardo da Vinci', isCorrect: false },
{ text: 'Raphael', isCorrect: false },
],
},
{
category: 'Art',
questionText: 'Which artist is famous for painting melting clocks?',
answers: [
{ text: 'Salvador Dalí', isCorrect: true },
{ text: 'Pablo Picasso', isCorrect: false },
{ text: 'Vincent van Gogh', isCorrect: false },
{ text: 'Claude Monet', isCorrect: false },
],
},
];
export default initialQuestions;