-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb_example_entry_creation.sql
449 lines (415 loc) · 9.43 KB
/
db_example_entry_creation.sql
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
/* This procedures should create now entrys for testing*/
CALL `learnhelper`.`add_test_type`("Python All", NULL);
CALL `learnhelper`.`add_test_type`("SQL All", NULL);
CALL `learnhelper`.`add_test_type`("NoSQL All", NULL);
CALL `learnhelper`.`add_test_type`("Project Management All", NULL);
CALL `learnhelper`.`add_person`("Admin","[email protected]", "aFakeHash");
CALL `learnhelper`.`add_person`("Test User","[email protected]","aFakeHash");
CALL `learnhelper`.`add_person`("Dozent","[email protected]","aFakeHash"");
/* This should add the parents correct if you use this on an empty database & tables */
CALL `learnhelper`.`add_question`(
"What is the output of the following Python code?\n\n```python\nprint('Hello, World!')\n```",
1,
True,
"Hello, World!",
"Hello World!",
"hello, world!",
"Syntax Error",
True,
False,
False,
False
);
CALL `learnhelper`.`add_question`(
"What is the output of the following Python code?\n\n```python\nprint('Hello, World!')\n```",
1,
True,
"Hello, World!",
"Hello World!",
"hello, world!",
"Syntax Error",
True,
False,
False,
False
);
CALL `learnhelper`.`add_question`(
"Which of the following are valid ways to create a list in Python?",
1,
False,
"list1 = [1, 2, 3]",
"list2 = list([1, 2, 3])",
"list3 = list(1, 2, 3)",
"list4 = [1, 2, 3,]",
True,
True,
False,
True
);
CALL `learnhelper`.`add_question`(
"What is the output of the following code?\n\n```python\nx = [1, 2, 3]\nprint(x[1])\n```",
1,
True,
"1",
"2",
"3",
"IndexError",
False,
True,
False,
False
);
CALL `learnhelper`.`add_question`(
"Which of the following statements are true about Python dictionaries?",
1,
False,
"They are unordered collections.",
"They are mutable.",
"Keys must be unique.",
"Values must be unique.",
True,
True,
True,
False
);
CALL `learnhelper`.`add_question`(
"What will be the output of the following code?\n\n```python\nfor i in range(3):\n print(i)\n```",
1,
True,
"0 1 2",
"0 1 2 3",
"1 2 3",
"None of the above",
True,
False,
False,
False
);
CALL `learnhelper`.`add_question`(
"Which of the following are valid Python variable names?",
1,
False,
"variable_1",
"1_variable",
"_variable",
"variable-1",
True,
False,
True,
False
);
CALL `learnhelper`.`add_question`(
"What will be the output of the following code?\n\n```python\nprint(type([]) is list)\n```",
1,
True,
"True",
"False",
"TypeError",
"None of the above",
True,
False,
False,
False
);
CALL `learnhelper`.`add_question`(
"Which of the following methods can be used to add an element to a list in Python?",
1,
False,
"append()",
"add()",
"insert()",
"extend()",
True,
False,
True,
True
);
CALL `learnhelper`.`add_question`(
"What will be the output of the following code?\n\n```python\nx = [1, 2, 3]\nprint(len(x))\n```",
1,
True,
"2",
"3",
"4",
"TypeError",
False,
True,
False,
False
);
CALL `learnhelper`.`add_question`(
"Which of the following are correct ways to create a set in Python?",
1,
False,
"set1 = {1, 2, 3}",
"set2 = set([1, 2, 3])",
"set3 = {1, 2, 3, 3}",
"set4 = set(1, 2, 3)",
True,
True,
True,
False
);
CALL learnhelper.add_question(
'What is the output of the following Python code: ''print(sum([1, 2, 3, 4, 5]))''?',
1,
TRUE,
'6',
'5',
'4',
'3',
TRUE,
FALSE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the purpose of the ''yield'' keyword in Python?',
1,
TRUE,
'To return a value from a function',
'To pause the execution of a function',
'To pass a value to a function',
'To resume the execution of a function',
TRUE,
FALSE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the difference between ''break'' and ''continue'' statements in Python?',
1,
TRUE,
'Break stops the execution of a loop, while continue skips to the next iteration',
'Break skips to the next iteration, while continue stops the execution of a loop',
'Break and continue are used to exit a loop',
'Break and continue are used to pause a loop',
TRUE,
FALSE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the purpose of the ''enumerate'' function in Python?',
1,
TRUE,
'To iterate over a list of numbers',
'To iterate over a list of strings',
'To iterate over a list of tuples',
'To iterate over a list of indices and values',
TRUE,
FALSE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the output of the following Python code: ''print([x**2 for x in range(5)])''?',
1,
TRUE,
'[0, 1, 4, 9, 16]',
'[1, 4, 9, 16, 25]',
'[0, 1, 4, 9, 25]',
'[1, 4, 9, 16, 25]',
TRUE,
FALSE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the purpose of the ''lambda'' function in Python?',
1,
TRUE,
'To define a function with a single expression',
'To define a function with multiple expressions',
'To define a function with no arguments',
'To define a function with a single argument',
TRUE,
FALSE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the output of the following Python code: ''print(reversed([1, 2, 3, 4, 5]))''?',
1,
TRUE,
'[5, 4, 3, 2, 1]',
'[1, 2, 3, 4, 5]',
'[5, 4, 3, 2, 1, 0]',
'[5, 4, 3, 2, 1, 0]',
TRUE,
FALSE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the purpose of the ''zip'' function in Python?',
1,
TRUE,
'To concatenate two lists',
'To iterate over two lists simultaneously',
'To merge two lists into one',
'To split a list into two lists',
TRUE,
FALSE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the output of the following Python code: ''print(set([1, 2, 2, 3, 4, 4, 5]))''?',
1,
TRUE,
'{1, 2, 3, 4, 5}',
'{1, 2, 3}',
'{1, 2, 3, 4}',
'{1, 2, 3, 4, 5}',
TRUE,
FALSE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the purpose of the ''sorted'' function in Python?',
1,
TRUE,
'To sort a list in descending order',
'To sort a list in ascending order',
'To sort a list in random order',
'To sort a list in reverse order',
TRUE,
FALSE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the purpose of the ''INDEX'' command in MySQL?',
2,
FALSE,
'To create a table',
'To insert data into a table',
'To create an index on a column',
'To delete a table',
FALSE,
TRUE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the purpose of the ''SELECT'' command in MySQL?',
2,
FALSE,
'To create a table',
'To insert data into a table',
'To retrieve data from a table',
'To delete a table',
FALSE,
TRUE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the purpose of the ''JOIN'' command in MySQL?',
2,
FALSE,
'To create a table',
'To insert data into a table',
'To combine data from two tables',
'To delete a table',
FALSE,
TRUE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the purpose of the ''GROUP BY'' command in MySQL?',
2,
FALSE,
'To create a table',
'To insert data into a table',
'To group data by one or more columns',
'To delete a table',
FALSE,
TRUE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the purpose of the ''HAVING'' command in MySQL?',
2,
FALSE,
'To create a table',
'To insert data into a table',
'To filter grouped data',
'To delete a table',
FALSE,
TRUE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the purpose of the ''LIMIT'' command in MySQL?',
2,
FALSE,
'To create a table',
'To insert data into a table',
'To limit the number of rows returned',
'To delete a table',
FALSE,
TRUE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the purpose of the ''ORDER BY'' command in MySQL?',
2,
FALSE,
'To create a table',
'To insert data into a table',
'To sort data in ascending or descending order',
'To delete a table',
FALSE,
TRUE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the purpose of the ''SUBQUERY'' command in MySQL?',
2,
FALSE,
'To create a table',
'To insert data into a table',
'To use the result of a query as an argument for another query',
'To delete a table',
FALSE,
TRUE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the purpose of the ''TRIGGER'' command in MySQL?',
2,
FALSE,
'To create a table',
'To insert data into a table',
'To execute a set of statements in response to a specific event',
'To delete a table',
FALSE,
TRUE,
FALSE,
FALSE
);
CALL learnhelper.add_question(
'What is the purpose of the ''VIEW'' command in MySQL?',
2,
FALSE,
'To create a table',
'To insert data into a table',
'To create a virtual table based on the result of a query',
'To delete a table',
FALSE,
TRUE,
FALSE,
FALSE
);
UPDATE `questions`
SET `validated_for_tests` = 1
WHERE `id` != 0;