-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.json
418 lines (418 loc) · 10.9 KB
/
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
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
{
"questions": [
{
"question":"How do you output ' Hello World ! ' in Python ?",
"answer":"print (« Hello World ! »)",
"choice":[
{
"choice":"print (« Hello World ! »)"
},
{
"choice":"print « Hello World ! »"
},
{
"choice":"print ( Hello World ! )"
},
{
"choice":"(print (Hello World !) )"
}
]
},
{
"question":"How do you assign the number 5 to a variable X in Python ?",
"answer":"X = 5",
"choice":[
{
"choice":"X = 5"
},
{
"choice":"X != 5"
},
{
"choice":"X == 5"
},
{
"choice":"X <- 5"
}
]
},
{
"question":"How do you initialise a ' For loop ' ?",
"answer":"for x > y",
"choice":[
{
"choice":"for x > y"
},
{
"choice":"for each x in y"
},
{
"choice":"for x in y"
},
{
"choice":"for (x > y)"
}
]
},
{
"question":"Which is not a legal variable name ?",
"answer":"_myvar",
"choice":[
{
"choice":"_myvar"
},
{
"choice":"my_var"
},
{
"choice":"Myvar"
},
{
"choice":"My-var"
}
]
},
{
"question":"How do you remove a white space ?",
"answer":"strip()",
"choice":[
{
"choice":"strip()"
},
{
"choice":"trim()"
},
{
"choice":"len()"
},
{
"choice":"rem()"
}
]
},
{
"question":"What does HTML stand for ?",
"answer":"Hyper Text Markup Language",
"choice":[
{
"choice":"Hyper Text Markup Language"
},
{
"choice":"Hyperlink and Text Markup Language"
},
{
"choice":"Home Tool Markup Language"
},
{
"choice":"Hyper Text Marking Language"
}
]
},
{
"question":"With what tool can you style a HTML file ?",
"answer":"CSS",
"choice":[
{
"choice":"CSS"
},
{
"choice":"Python"
},
{
"choice":"Java"
},
{
"choice":"C++"
}
]
},
{
"question":"What does CSS stand for ?",
"answer":"Cascading Style Sheet",
"choice":[
{
"choice":"Cascading Style Sheet"
},
{
"choice":"Colorful Style Sheet"
},
{
"choice":"Creative Style Sheet"
},
{
"choice":"Computing Style Sheet"
}
]
},
{
"question":"Which property is used to change the background color ?",
"answer":"background-color",
"choice":[
{
"choice":"background-color"
},
{
"choice":"background-colour"
},
{
"choice":"bgcolor"
},
{
"choice":"bg-color"
}
]
},
{
"question":"Which CSS property controls the text size?",
"answer":"font-size",
"choice":[
{
"choice":"font-size"
},
{
"choice":"text-size"
},
{
"choice":"font-style"
},
{
"choice":"text-style"
}
]
},
{
"question":"How do you write 'Hello World' in an alert box ?",
"answer":"alert(« Hello World ») ;",
"choice":[
{
"choice":"alert(« Hello World ») ;"
},
{
"choice":"msgBox(« Hello World ») ;"
},
{
"choice":"alertBox(« Hello World ») ;"
},
{
"choice":"msg(« Hello World ») ;"
}
]
},
{
"question":"How do you call a function named 'myFunction' ?",
"answer":"myFunction()",
"choice":[
{
"choice":"myFunction()"
},
{
"choice":"call myFunction()"
},
{
"choice":"call function myFunction()"
},
{
"choice":"call (« myFunction() »)"
}
]
},
{
"question":"What does RAM stand for ?",
"answer":"Random Access Memory",
"choice":[
{
"choice":"Random Access Memory"
},
{
"choice":"Random All Memory"
},
{
"choice":"Read All Memory"
},
{
"choice":"Read Access Memory"
}
]
},
{
"question":"Which event occurs when the user clicks on an HTML element ?",
"answer":"onclick",
"choice":[
{
"choice":"onclick"
},
{
"choice":"onmouseclick"
},
{
"choice":"onchange"
},
{
"choice":"onmouseover"
}
]
},
{
"question":"Which data type is used to create a variable that should store text in Java ?",
"answer":"String",
"choice":[
{
"choice":"String"
},
{
"choice":"Strings"
},
{
"choice":"myString"
},
{
"choice":"Txt"
}
]
},
{
"question":"How do you create a variable with the numeric value 5 in Java ?",
"answer":"int x = 5 ;",
"choice":[
{
"choice":"int x = 5 ;"
},
{
"choice":"float x = 5 ;"
},
{
"choice":"x = 5 ;"
},
{
"choice":"num x = 5 ;"
}
]
},
{
"question":"Which operator is used to add together two values ?",
"answer":"+",
"choice":[
{
"choice":"+"
},
{
"choice":"&"
},
{
"choice":"*"
},
{
"choice":"%"
}
]
},
{
"question":"What do array indices start with?",
"answer":"0",
"choice":[
{
"choice":"0"
},
{
"choice":"1"
},
{
"choice":"-1"
},
{
"choice":"10"
}
]
},
{
"question":"Which SQL statement is used to extract data from a database ?",
"answer":"SELECT",
"choice":[
{
"choice":"SELECT"
},
{
"choice":"EXTRACT"
},
{
"choice":"GET"
},
{
"choice":"OPEN"
}
]
},
{
"question":"Which SQL statement is used to update data in a database ?",
"answer":"UPDATE",
"choice":[
{
"choice":"UPDATE"
},
{
"choice":"SAVE"
},
{
"choice":"SAVE AS"
},
{
"choice":"MODIFY"
}
]
},
{
"question":"Which SQL statement is used to delete data from a database?",
"answer":"DELETE",
"choice":[
{
"choice":"DELETE"
},
{
"choice":"REMOVE"
},
{
"choice":"COLLAPSE"
},
{
"choice":"DESTROY"
}
]
},
{
"question":"Which SQL statement is used to insert data from a database ?",
"answer":"INSERT INTO",
"choice":[
{
"choice":"INSERT INTO"
},
{
"choice":"INSERT NEW"
},
{
"choice":"ADD NEW"
},
{
"choice":"ADD RECORD"
}
]
},
{
"question":"All variables in PHP start with which symbol ?",
"answer":"$",
"choice":[
{
"choice":"$"
},
{
"choice":"&"
},
{
"choice":"£"
},
{
"choice":"§"
}
]
}
]
}