-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.py
60 lines (60 loc) · 6.22 KB
/
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
question_data = [{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "The Neanderthals were a direct ancestor of modern humans.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "A person can get sunburned on a cloudy day.", "correct_answer": "True",
"incorrect_answers": ["False"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "The Doppler effect applies to light.", "correct_answer": "True",
"incorrect_answers": ["False"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "Hippopotomonstrosesquippedaliophobia is the irrational fear of long words.",
"correct_answer": "True", "incorrect_answers": ["False"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "The "Gympie Stinger" is the deadliest plant in the world.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "The planet Mars has two moons orbiting it.", "correct_answer": "True",
"incorrect_answers": ["False"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "Steel is an alloy of Iron and Carbon.", "correct_answer": "True",
"incorrect_answers": ["False"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "Like with the Neanderthals, Homo sapiens sapiens also interbred with the Denisovans.",
"correct_answer": "True", "incorrect_answers": ["False"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "A defibrillator is used to start up a heartbeat once a heart has stopped beating.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "Shrimp can swim backwards.", "correct_answer": "True",
"incorrect_answers": ["False"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "Type 1 diabetes is a result of the liver working improperly.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "Anatomy considers the forms of macroscopic structures such as organs and organ systems.",
"correct_answer": "True", "incorrect_answers": ["False"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "Scientists accidentally killed the once known world's oldest living creature, a mollusc, known to be aged as 507 years old.",
"correct_answer": "True", "incorrect_answers": ["False"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "Centripedal force is an apparent force that acts outward on a body moving around a center, arising from the body's inertia.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "In the periodic table, Potassium's symbol is the letter K.",
"correct_answer": "True", "incorrect_answers": ["False"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "Sugar contains fat.", "correct_answer": "False",
"incorrect_answers": ["True"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "Pneumonoultramicroscopicsilicovolcanoconiosis is a synonym for the disease known as silicosis.",
"correct_answer": "True", "incorrect_answers": ["False"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "Sound can travel through a vacuum.", "correct_answer": "False",
"incorrect_answers": ["True"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": "The most frequent subconscious activity repeated by the human body is blinking.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Science & Nature", "type": "boolean", "difficulty": "medium",
"question": ""Tachycardia" or "Tachyarrhythmia" refers to a resting heart-rate near or over 100 BPM.",
"correct_answer": "True", "incorrect_answers": ["False"]}]