-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.py
33 lines (33 loc) · 2.2 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
question_data = [
{"category": "Science: Computers", "type": "boolean", "difficulty": "medium",
"question": "The first computer bug was formed by faulty wires.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Science: Computers", "type": "boolean", "difficulty": "medium",
"question": "FLAC stands for "Free Lossless Audio Condenser"'",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Science: Computers", "type": "boolean", "difficulty": "easy",
"question": "Linus Torvalds created Linux and Git.", "correct_answer": "True",
"incorrect_answers": ["False"]},
{"category": "Science: Computers", "type": "boolean", "difficulty": "easy",
"question": "Ada Lovelace is often considered the first computer programmer.",
"correct_answer": "True", "incorrect_answers": ["False"]},
{"category": "Science: Computers", "type": "boolean", "difficulty": "medium",
"question": "AMD created the first consumer 64-bit processor.",
"correct_answer": "True", "incorrect_answers": ["False"]},
{"category": "Science: Computers", "type": "boolean", "difficulty": "hard",
"question": "The IBM PC used an Intel 8008 microprocessor clocked at 4.77 MHz "
"and 8 kilobytes of memory.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Science: Computers", "type": "boolean", "difficulty": "easy",
"question": "Time on Computers is measured via the EPOX System.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Science: Computers", "type": "boolean", "difficulty": "easy",
"question": "The Windows 7 operating system has six main editions.",
"correct_answer": "True", "incorrect_answers": ["False"]},
{"category": "Science: Computers", "type": "boolean", "difficulty": "medium",
"question": "The first dual-core CPU was the Intel Pentium D.",
"correct_answer": "False", "incorrect_answers": ["True"]},
{"category": "Science: Computers", "type": "boolean", "difficulty": "medium",
"question": "Android versions are named in alphabetical order.",
"correct_answer": "True", "incorrect_answers": ["False"]}
]