-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
48 lines (48 loc) · 1.47 KB
/
db.json
File metadata and controls
48 lines (48 loc) · 1.47 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
{
"questions": [
{
"prompt": "Which of the following is a feature of object-oriented programming?",
"answers": [
"HTTP request handling",
"Encapsulation",
"Relational database indexing",
"Command-line interface"
],
"correctIndex": 1,
"id": 1
},
{
"prompt": "What is the primary purpose of a foreign key in a relational database?",
"answers": [
"To index large text columns",
"To link records between tables",
"To ensure data normalization",
"To improve query performance"
],
"correctIndex": 1,
"id": 2
},
{
"prompt": "Which HTTP status code indicates a successful GET request?",
"answers": [
"200",
"301",
"404",
"500"
],
"correctIndex": 0,
"id": 3
},
{
"prompt": "In software testing, what does the term 'unit test' refer to?",
"answers": [
"Testing the entire application workflow",
"Testing individual components in isolation",
"Testing for user interface bugs",
"Testing for system scalability"
],
"correctIndex": 1,
"id": 4
}
]
}