-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz_questions.json
125 lines (125 loc) · 4.12 KB
/
quiz_questions.json
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
{
"response_code": 0,
"results": [
{
"category": "Science: Computers",
"type": "multiple",
"difficulty": "easy",
"question": "Which computer hardware device provides an interface for all other connected devices to communicate?",
"correct_answer": "Motherboard",
"incorrect_answers": [
"Central Processing Unit",
"Hard Disk Drive",
"Random Access Memory"
]
},
{
"category": "Science: Computers",
"type": "multiple",
"difficulty": "easy",
"question": "In the programming language Java, which of these keywords would you put on a variable to make sure it doesn't get modified?",
"correct_answer": "Final",
"incorrect_answers": [
"Static",
"Private",
"Public"
]
},
{
"category": "Science: Computers",
"type": "multiple",
"difficulty": "easy",
"question": "How many kilobytes in one gigabyte (in decimal)?",
"correct_answer": "1000000",
"incorrect_answers": [
"1024",
"1000",
"1048576"
]
},
{
"category": "Science: Computers",
"type": "multiple",
"difficulty": "easy",
"question": "In "Hexadecimal", what color would be displayed from the color code? "#00FF00"?",
"correct_answer": "Green",
"incorrect_answers": [
"Red",
"Blue",
"Yellow"
]
},
{
"category": "Science: Computers",
"type": "multiple",
"difficulty": "easy",
"question": "Which computer language would you associate Django framework with?",
"correct_answer": "Python",
"incorrect_answers": [
"C#",
"C++",
"Java"
]
},
{
"category": "Science: Computers",
"type": "multiple",
"difficulty": "easy",
"question": "What does LTS stand for in the software market?",
"correct_answer": "Long Term Support",
"incorrect_answers": [
"Long Taco Service",
"Ludicrous Transfer Speed",
"Ludicrous Turbo Speed"
]
},
{
"category": "Science: Computers",
"type": "multiple",
"difficulty": "easy",
"question": "The numbering system with a radix of 16 is more commonly referred to as ",
"correct_answer": "Hexidecimal",
"incorrect_answers": [
"Binary",
"Duodecimal",
"Octal"
]
},
{
"category": "Science: Computers",
"type": "multiple",
"difficulty": "easy",
"question": "The C programming language was created by this American computer scientist. ",
"correct_answer": "Dennis Ritchie",
"incorrect_answers": [
"Tim Berners Lee",
"al-Khw\u0101rizm\u012b",
"Willis Ware"
]
},
{
"category": "Science: Computers",
"type": "multiple",
"difficulty": "easy",
"question": "In computing, what does LAN stand for?",
"correct_answer": "Local Area Network",
"incorrect_answers": [
"Long Antenna Node",
"Light Access Node",
"Land Address Navigation"
]
},
{
"category": "Science: Computers",
"type": "multiple",
"difficulty": "easy",
"question": "What language does Node.js use?",
"correct_answer": "JavaScript",
"incorrect_answers": [
"Java",
"Java Source",
"Joomla Source Code"
]
}
]
}