-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.json
More file actions
98 lines (98 loc) · 2.63 KB
/
api.json
File metadata and controls
98 lines (98 loc) · 2.63 KB
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
[
{
"id": 849,
"question": "How to remove the docker container with container id mentioned in the command.",
"description": null,
"answers": {
"answer_a": "$ docker rm -rf 9b6343d3b5a0",
"answer_b": "$ docker -rm rf 9b6343d3b5a0",
"answer_c": "$ docker rm 9b6343d3b5a0",
"answer_d": null,
"answer_e": null,
"answer_f": null
},
"multiple_correct_answers": "false",
"correct_answers": {
"answer_a_correct": "false",
"answer_b_correct": "false",
"answer_c_correct": "true",
"answer_d_correct": "false",
"answer_e_correct": "false",
"answer_f_correct": "false"
},
"correct_answer": "answer_a",
"explanation": null,
"tip": null,
"tags": [
{
"name": "Docker"
}
],
"category": "Docker",
"difficulty": "Easy"
},
{
"id": 26,
"question": "What is a daemon?",
"description": null,
"answers": {
"answer_a": "It is a generic name for e-mail servers on Linux. The most famous one is mailer-daemon",
"answer_b": "It is a program that keeps running on the background after it is called, answering to requests done by users and other programs.",
"answer_c": "It is an antivirus for Linux.",
"answer_d": "It is the generic name for any Linux server.",
"answer_e": null,
"answer_f": null
},
"multiple_correct_answers": "false",
"correct_answers": {
"answer_a_correct": "false",
"answer_b_correct": "true",
"answer_c_correct": "false",
"answer_d_correct": "false",
"answer_e_correct": "false",
"answer_f_correct": "false"
},
"correct_answer": "answer_b",
"explanation": null,
"tip": null,
"tags": [
{
"name": "Linux"
}
],
"category": "Linux",
"difficulty": "Medium"
},
{
"id": 627,
"question": "How can we set infinite execution time for a PHP script?",
"description": null,
"answers": {
"answer_a": "Add set_time_limit() at the beginning of a script",
"answer_b": "Add set_time_limit(infinity) at the beginning of a script",
"answer_c": "Add set_time_limit(0) at the beginning of a script",
"answer_d": null,
"answer_e": null,
"answer_f": null
},
"multiple_correct_answers": "false",
"correct_answers": {
"answer_a_correct": "false",
"answer_b_correct": "false",
"answer_c_correct": "true",
"answer_d_correct": "false",
"answer_e_correct": "false",
"answer_f_correct": "false"
},
"correct_answer": "answer_a",
"explanation": null,
"tip": null,
"tags": [
{
"name": "PHP"
}
],
"category": "Code",
"difficulty": "Medium"
}
]