forked from Imemyslf/KBC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKBC_Data.py
515 lines (514 loc) · 22.4 KB
/
KBC_Data.py
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
Money_Prices = [
1000,
2000,
3000,
5000,
10000,
20000,
40000,
80000,
160000,
320000,
640000,
1250000,
2500000,
5000000,
70000000
]
Questions = [
# Level 1
[
{
'question': 'What is the capital of France?',
'options': ['Paris', 'London', 'Berlin', 'Rome'],
'answer': 'Paris',
'description': 'The capital of France is known for its art, culture, and the Eiffel Tower.'
},
{
'question': 'Which planet is known as the Red Planet?',
'options': ['Mars', 'Venus', 'Jupiter', 'Saturn'],
'answer': 'Mars',
'description': 'Mars is often called the Red Planet due to its reddish appearance.'
},
{
'question': 'Who is the author of "Romeo and Juliet"?',
'options': ['William Shakespeare', 'Charles Dickens', 'Jane Austen', 'Mark Twain'],
'answer': 'William Shakespeare',
'description': 'Shakespeare is renowned for many famous plays, including this tragedy.'
},
{
'question': 'What is the largest mammal in the world?',
'options': ['Blue Whale', 'African Elephant', 'Polar Bear', 'Giraffe'],
'answer': 'Blue Whale',
'description': 'Blue whales are the largest animals to have ever lived on Earth.'
},
{
'question': 'Which gas do plants absorb from the atmosphere?',
'options': ['Carbon Dioxide', 'Oxygen', 'Nitrogen', 'Hydrogen'],
'answer': 'Carbon Dioxide',
'description': 'Plants use carbon dioxide during photosynthesis to produce energy.'
}
],
# Level 2
[
{
'question': 'Who painted the Mona Lisa?',
'options': ['Leonardo da Vinci', 'Vincent van Gogh', 'Pablo Picasso', 'Rembrandt'],
'answer': 'Leonardo da Vinci',
'description': 'Leonardo da Vinci created this famous portrait in the Renaissance period.'
},
{
'question': 'In which country is the Great Barrier Reef located?',
'options': ['Australia', 'Brazil', 'Indonesia', 'South Africa'],
'answer': 'Australia',
'description': 'The Great Barrier Reef is a world-famous coral reef system off the coast of Australia.'
},
{
'question': 'What is the chemical symbol for gold?',
'options': ['Au', 'Ag', 'Fe', 'Cu'],
'answer': 'Au',
'description': 'The chemical symbol "Au" comes from the Latin word for gold, "aurum."'
},
{
'question': 'Who is the author of "To Kill a Mockingbird"?',
'options': ['Harper Lee', 'Mark Twain', 'George Orwell', 'Charles Dickens'],
'answer': 'Harper Lee',
'description': 'This novel deals with issues of race and injustice in the American South.'
},
{
'question': 'Which gas makes up the majority of Earth\'s atmosphere?',
'options': ['Nitrogen', 'Oxygen', 'Carbon Dioxide', 'Hydrogen'],
'answer': 'Nitrogen',
'description': 'Nitrogen constitutes about 78% of the Earth\'s atmosphere.'
}
],
# Level 3
[
{
'question': 'Which country is known as the Land of the Rising Sun?',
'options': ['Japan', 'China', 'South Korea', 'Thailand'],
'answer': 'Japan',
'description': 'Japan is often called the Land of the Rising Sun due to its name in Japanese, "Nihon."'
},
{
'question': 'Who was the first woman to fly solo across the Atlantic Ocean?',
'options': ['Amelia Earhart', 'Bessie Coleman', 'Charles Lindbergh', 'Howard Hughes'],
'answer': 'Amelia Earhart',
'description': 'Amelia Earhart was a pioneering aviator known for her achievements in aviation.'
},
{
'question': 'What is the currency of India?',
'options': ['Indian Rupee', 'Yen', 'Euro', 'Dollar'],
'answer': 'Indian Rupee',
'description': 'The currency used in India is the Indian Rupee (INR).'
},
{
'question': 'Which planet is known as the "Morning Star" or "Evening Star"?',
'options': ['Venus', 'Mars', 'Mercury', 'Jupiter'],
'answer': 'Venus',
'description': 'Venus is often visible in the morning or evening and is known by these names.'
},
{
'question': 'Who wrote the famous play "Hamlet"?',
'options': ['William Shakespeare', 'Charles Dickens', 'Jane Austen', 'F. Scott Fitzgerald'],
'answer': 'William Shakespeare',
'description': 'William Shakespeare is the playwright behind this tragedy.'
}
],
# Level 4
[
{
'question': 'What is the smallest prime number?',
'options': ['2', '1', '3', '4'],
'answer': '2',
'description': 'The number 2 is the smallest and only even prime number.'
},
{
'question': 'Which gas do humans exhale when they breathe out?',
'options': ['Carbon Dioxide', 'Oxygen', 'Nitrogen', 'Hydrogen'],
'answer': 'Carbon Dioxide',
'description': 'Carbon Dioxide is the waste gas exhaled during respiration.'
},
{
'question': 'Who is the author of "1984"?',
'options': ['George Orwell', 'Aldous Huxley', 'Ray Bradbury', 'Franz Kafka'],
'answer': 'George Orwell',
'description': 'George Orwell wrote this dystopian novel.'
},
{
'question': 'Which continent is the Sahara Desert located in?',
'options': ['Africa', 'Asia', 'South America', 'Australia'],
'answer': 'Africa',
'description': 'The Sahara Desert is the world\'s largest hot desert and is located in Africa.'
},
{
'question': 'What is the chemical symbol for water?',
'options': ['H2O', 'CO2', 'NaCl', 'O3'],
'answer': 'H2O',
'description': 'Water is represented by the chemical formula H2O.'
}
],
# Level 5
[
{
'question': 'Who is the author of "Pride and Prejudice"?',
'options': ['Jane Austen', 'Charlotte Brontë', 'Emily Brontë', 'Charles Dickens'],
'answer': 'Jane Austen',
'description': 'Jane Austen is known for her classic novel "Pride and Prejudice."'
},
{
'question': 'Which gas is responsible for the green color of plants?',
'options': ['Chlorophyll', 'Oxygen', 'Carbon Dioxide', 'Hydrogen'],
'answer': 'Chlorophyll',
'description': 'Chlorophyll, a green pigment, is responsible for photosynthesis in plants.'
},
{
'question': 'What is the largest planet in our solar system?',
'options': ['Jupiter', 'Saturn', 'Earth', 'Uranus'],
'answer': 'Jupiter',
'description': 'Jupiter is the largest planet with a prominent system of rings.'
},
{
'question': 'Who painted the Sistine Chapel ceiling?',
'options': ['Michelangelo', 'Leonardo da Vinci', 'Raphael', 'Donatello'],
'answer': 'Michelangelo',
'description': 'Michelangelo created the renowned artwork in the Sistine Chapel.'
},
{
'question': 'Which gas do humans primarily breathe in for respiration?',
'options': ['Oxygen', 'Carbon Dioxide', 'Nitrogen', 'Hydrogen'],
'answer': 'Oxygen',
'description': 'Oxygen is essential for human respiration and energy production.'
}
],
# Level 6
[
{
'question': 'What is the national flower of Japan?',
'options': ['Cherry Blossom', 'Orchid', 'Rose', 'Lily'],
'answer': 'Cherry Blossom',
'description': 'The cherry blossom is a symbol of renewal and the transient nature of life in Japan.'
},
{
'question': 'Which gas is responsible for the Earth\'s ozone layer?',
'options': ['Ozone (O3)', 'Hydrogen', 'Methane', 'Nitrous Oxide'],
'answer': 'Ozone (O3)',
'description': 'Ozone in the stratosphere forms the ozone layer and protects us from harmful UV radiation.'
},
{
'question': 'Who wrote "The Catcher in the Rye"?',
'options': ['J.D. Salinger', 'F. Scott Fitzgerald', 'Ernest Hemingway', 'John Steinbeck'],
'answer': 'J.D. Salinger',
'description': 'J.D. Salinger is the author of this classic novel.'
},
{
'question': 'In which year did the Titanic sink?',
'options': ['1912', '1914', '1907', '1915'],
'answer': '1912',
'description': 'The RMS Titanic sank on April 15, 1912, during its maiden voyage.'
},
{
'question': 'What is the chemical symbol for silver?',
'options': ['Ag', 'Au', 'Pt', 'Cu'],
'answer': 'Ag',
'description': 'The chemical symbol "Ag" comes from the Latin word for silver, "argentum."'
}
],
# Level 7
[
{
'question': 'Which gas is used in balloons to make them float?',
'options': ['Helium', 'Hydrogen', 'Nitrogen', 'Oxygen'],
'answer': 'Helium',
'description': 'Helium is less dense than air and is used to make balloons float.'
},
{
'question': 'Who is the author of "War and Peace"?',
'options': ['Leo Tolstoy', 'Fyodor Dostoevsky', 'Ivan Turgenev', 'Anton Chekhov'],
'answer': 'Leo Tolstoy',
'description': 'Leo Tolstoy wrote the epic novel "War and Peace."'
},
{
'question': 'What is the largest planet in the solar system?',
'options': ['Jupiter', 'Saturn', 'Neptune', 'Uranus'],
'answer': 'Jupiter',
'description': 'Jupiter is the largest planet in our solar system.'
},
{
'question': 'In which city is the Louvre Museum located?',
'options': ['Paris', 'Rome', 'London', 'Madrid'],
'answer': 'Paris',
'description': 'The Louvre Museum, one of the world\'s largest art museums, is located in Paris.'
},
{
'question': 'What is the chemical symbol for copper?',
'options': ['Cu', 'Co', 'Ca', 'Cr'],
'answer': 'Cu',
'description': 'The chemical symbol "Cu" is derived from the Latin word for copper, "cuprum."'
}
],
# Level 8
[
{
'question': 'Who wrote the novel "Dracula"?',
'options': ['Bram Stoker', 'Mary Shelley', 'Edgar Allan Poe', 'H.P. Lovecraft'],
'answer': 'Bram Stoker',
'description': 'Bram Stoker is the author of the classic Gothic horror novel "Dracula."'
},
{
'question': 'What gas do plants release during photosynthesis?',
'options': ['Oxygen', 'Carbon Dioxide', 'Hydrogen', 'Nitrogen'],
'answer': 'Oxygen',
'description': 'Plants release oxygen as a byproduct of photosynthesis.'
},
{
'question': 'What is the smallest planet in our solar system?',
'options': ['Mercury', 'Venus', 'Mars', 'Pluto'],
'answer': 'Mercury',
'description': 'Mercury is the smallest planet and the closest to the Sun.'
},
{
'question': 'Which artist painted "Starry Night"?',
'options': ['Vincent van Gogh', 'Pablo Picasso', 'Claude Monet', 'Salvador Dalí'],
'answer': 'Vincent van Gogh',
'description': 'Vincent van Gogh created the iconic painting "Starry Night."'
},
{
'question': 'What is the chemical symbol for lead?',
'options': ['Pb', 'Fe', 'Ag', 'Hg'],
'answer': 'Pb',
'description': 'The chemical symbol "Pb" is derived from the Latin word for lead, "plumbum."'
}
],
# Level 9
[
{
'question': 'Who wrote the play "Macbeth"?',
'options': ['William Shakespeare', 'Christopher Marlowe', 'George Bernard Shaw', 'Oscar Wilde'],
'answer': 'William Shakespeare',
'description': 'William Shakespeare is the playwright behind the tragedy "Macbeth."'
},
{
'question': 'Which gas is known as laughing gas?',
'options': ['Nitrous Oxide', 'Helium', 'Methane', 'Carbon Monoxide'],
'answer': 'Nitrous Oxide',
'description': 'Nitrous oxide is a gas that can induce laughter and is used in dentistry.'
},
{
'question': 'What is the fifth planet from the Sun in our solar system?',
'options': ['Jupiter', 'Saturn', 'Mars', 'Uranus'],
'answer': 'Jupiter',
'description': 'Jupiter is the fifth planet from the Sun in our solar system.'
},
{
'question': 'Who is the artist known for his painting of melting clocks?',
'options': ['Salvador Dalí', 'Pablo Picasso', 'René Magritte', 'Vincent van Gogh'],
'answer': 'Salvador Dalí',
'description': 'Salvador Dalí is famous for his surreal painting "The Persistence of Memory."'
},
{
'question': 'What is the chemical symbol for aluminum?',
'options': ['Al', 'Fe', 'Cu', 'Ag'],
'answer': 'Al',
'description': 'The chemical symbol "Al" is used for the element aluminum.'
}
],
# Level 10
[
{
'question': 'Who wrote the novel "The Great Gatsby"?',
'options': ['F. Scott Fitzgerald', 'Ernest Hemingway', 'John Steinbeck', 'William Faulkner'],
'answer': 'F. Scott Fitzgerald',
'description': 'F. Scott Fitzgerald is the author of "The Great Gatsby."'
},
{
'question': 'What gas is used in soda to create carbonation?',
'options': ['Carbon Dioxide', 'Nitrogen', 'Oxygen', 'Hydrogen'],
'answer': 'Carbon Dioxide',
'description': 'Carbon dioxide is used to carbonate soft drinks and create bubbles.'
},
{
'question': 'Which planet is known as the "Evening Star"?',
'options': ['Venus', 'Mercury', 'Mars', 'Saturn'],
'answer': 'Venus',
'description': 'Venus is often visible as the "Evening Star."'
},
{
'question': 'Who is the artist famous for "The Persistence of Memory"?',
'options': ['Salvador Dalí', 'Pablo Picasso', 'René Magritte', 'Vincent van Gogh'],
'answer': 'Salvador Dalí',
'description': 'Salvador Dalí created the surreal painting "The Persistence of Memory."'
},
{
'question': 'What is the chemical symbol for iron?',
'options': ['Fe', 'Ag', 'Au', 'Cu'],
'answer': 'Fe',
'description': 'The chemical symbol "Fe" is used for the element iron.'
}
],
# Level 11
[
{
'question': 'Who wrote "Moby-Dick"?',
'options': ['Herman Melville', 'Nathaniel Hawthorne', 'Mark Twain', 'Emily Dickinson'],
'answer': 'Herman Melville',
'description': 'Herman Melville is the author of the novel "Moby-Dick."'
},
{
'question': 'Which gas is used in light bulbs to produce light?',
'options': ['Argon', 'Neon', 'Xenon', 'Krypton'],
'answer': 'Argon',
'description': 'Argon is used in incandescent light bulbs to prevent filament oxidation.'
},
{
'question': 'What is the sixth planet from the Sun in our solar system?',
'options': ['Saturn', 'Uranus', 'Neptune', 'Pluto'],
'answer': 'Saturn',
'description': 'Saturn is the sixth planet from the Sun in our solar system.'
},
{
'question': 'Who painted "The Last Supper"?',
'options': ['Leonardo da Vinci', 'Raphael', 'Michelangelo', 'Caravaggio'],
'answer': 'Leonardo da Vinci',
'description': 'Leonardo da Vinci painted the famous "The Last Supper" mural.'
},
{
'question': 'What is the chemical symbol for tin?',
'options': ['Sn', 'Fe', 'Al', 'Hg'],
'answer': 'Sn',
'description': 'The chemical symbol "Sn" is used for the element tin.'
}
],
# Level 12
[
{
'question': 'Who is the author of "The Iliad" and "The Odyssey"?',
'options': ['Homer', 'Sophocles', 'Aeschylus', 'Euripides'],
'answer': 'Homer',
'description': 'Homer is the ancient Greek poet who wrote these epic poems.'
},
{
'question': 'Which gas gives the sky its blue color?',
'options': ['Nitrogen', 'Oxygen', 'Carbon Dioxide', 'Hydrogen'],
'answer': 'Nitrogen',
'description': 'Nitrogen scatters sunlight, giving the sky its blue color.'
},
{
'question': 'What is the seventh planet from the Sun in our solar system?',
'options': ['Uranus', 'Neptune', 'Saturn', 'Pluto'],
'answer': 'Uranus',
'description': 'Uranus is the seventh planet from the Sun in our solar system.'
},
{
'question': 'Who painted the "Mona Lisa"?',
'options': ['Leonardo da Vinci', 'Raphael', 'Michelangelo', 'Caravaggio'],
'answer': 'Leonardo da Vinci',
'description': 'Leonardo da Vinci painted the famous "Mona Lisa" portrait.'
},
{
'question': 'What is the chemical symbol for potassium?',
'options': ['K', 'Na', 'Ca', 'Mg'],
'answer': 'K',
'description': 'The chemical symbol "K" is used for the element potassium.'
}
],
# Level 13
[
{
'question': 'Who wrote the novel "The Lord of the Rings"?',
'options': ['J.R.R. Tolkien', 'C.S. Lewis', 'J.K. Rowling', 'George R.R. Martin'],
'answer': 'J.R.R. Tolkien',
'description': 'J.R.R. Tolkien is the author of "The Lord of the Rings" series.'
},
{
'question': 'Which gas is used in the production of soft drinks?',
'options': ['Carbon Dioxide', 'Nitrogen', 'Oxygen', 'Hydrogen'],
'answer': 'Carbon Dioxide',
'description': 'Carbon dioxide is used to carbonate beverages like soda.'
},
{
'question': 'What is the eighth planet from the Sun in our solar system?',
'options': ['Neptune', 'Uranus', 'Saturn', 'Pluto'],
'answer': 'Neptune',
'description': 'Neptune is the eighth planet from the Sun in our solar system.'
},
{
'question': 'Who painted the "Guernica" mural?',
'options': ['Pablo Picasso', 'Salvador Dalí', 'Vincent van Gogh', 'Henri Matisse'],
'answer': 'Pablo Picasso',
'description': 'Pablo Picasso created the anti-war mural "Guernica."'
},
{
'question': 'What is the chemical symbol for calcium?',
'options': ['Ca', 'C', 'Cl', 'K'],
'answer': 'Ca',
'description': 'The chemical symbol "Ca" is used for the element calcium.'
}
],
# Level 14
[
{
'question': 'Who is the author of "The Hitchhiker\'s Guide to the Galaxy"?',
'options': ['Douglas Adams', 'Arthur C. Clarke', 'Isaac Asimov', 'Ray Bradbury'],
'answer': 'Douglas Adams',
'description': 'Douglas Adams wrote "The Hitchhiker\'s Guide to the Galaxy."'
},
{
'question': 'What gas is used to extinguish fires?',
'options': ['Carbon Dioxide', 'Water Vapor', 'Nitrogen', 'Oxygen'],
'answer': 'Carbon Dioxide',
'description': 'Carbon dioxide is used in fire extinguishers to smother flames.'
},
{
'question': 'What is the ninth planet from the Sun in our solar system?',
'options': ['Pluto', 'Neptune', 'Uranus', 'Eris'],
'answer': 'Pluto',
'description': 'Pluto, formerly considered the ninth planet, is now classified as a dwarf planet.'
},
{
'question': 'Who painted the "The Starry Night"?',
'options': ['Vincent van Gogh', 'Pablo Picasso', 'Salvador Dalí', 'Claude Monet'],
'answer': 'Vincent van Gogh',
'description': 'Vincent van Gogh painted "The Starry Night."'
},
{
'question': 'What is the chemical symbol for mercury?',
'options': ['Hg', 'Me', 'Mc', 'Mn'],
'answer': 'Hg',
'description': 'The chemical symbol "Hg" is used for the element mercury.'
}
],
# Level 15
[
{
'question': 'Who is the author of "One Hundred Years of Solitude"?',
'options': ['Gabriel García Márquez', 'Pablo Neruda', 'Mario Vargas Llosa', 'Isabelle Allende'],
'answer': 'Gabriel García Márquez',
'description': 'Gabriel García Márquez wrote the acclaimed novel "One Hundred Years of Solitude."'
},
{
'question': 'What gas is responsible for the greenhouse effect on Earth?',
'options': ['Carbon Dioxide', 'Methane', 'Water Vapor', 'Ozone'],
'answer': 'Carbon Dioxide',
'description': 'Carbon Dioxide is one of the greenhouse gases contributing to global warming.'
},
{
'question': 'What is the tenth planet from the Sun in our solar system?',
'options': ['Eris', 'Haumea', 'Makemake', 'Sedna'],
'answer': 'Eris',
'description': 'Eris is a dwarf planet and was briefly considered the tenth planet before reclassification.'
},
{
'question': 'Who painted "The Birth of Venus"?',
'options': ['Sandro Botticelli', 'Leonardo da Vinci', 'Michelangelo', 'Raphael'],
'answer': 'Sandro Botticelli',
'description': 'Sandro Botticelli created the iconic painting "The Birth of Venus."'
},
{
'question': 'What is the chemical symbol for uranium?',
'options': ['U', 'Pu', 'Am', 'Np'],
'answer': 'U',
'description': 'The chemical symbol "U" is used for the element uranium.'
}
]
]