-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
147 lines (147 loc) · 3.23 KB
/
db.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
{
"users": [
{
"id": 1,
"email": "rosa",
"questionsId": [
14,
31
],
"confirmedMail": false,
"submitedExam": true,
"startedExam": true,
"examStartTime": "7/2/2023-19:30:30"
},
{
"id": 9,
"email": "carlos",
"questionsId": [
14,
31,
44
],
"confirmedMail": false,
"submitedExam": false,
"startedExam": false,
"examStartTime": "7/2/2023-19:29:32"
}
],
"questions": [
{
"id": 14,
"question": "How much is 1 + 1 ?",
"alternatives": [
{
"id": 1,
"answer": "2"
},
{
"id": 3,
"answer": "11"
},
{
"id": 6,
"answer": "1+1"
}
],
"answerId": 1,
"userAnswerId": 0
},
{
"id": 44,
"question": "What is the speed of sound ?",
"alternatives": [
{
"id": 1,
"answer": "20 m/s"
},
{
"id": 3,
"answer": "300 m/s"
},
{
"id": 6,
"answer": "3 km/s"
},
{
"id": 12,
"answer": "357,6 cm/s"
}
],
"answerId": 3,
"userAnswerId": 0
},
{
"id": 31,
"question": "How you can create 3D pathfinding seamlessly using Unity ?",
"alternatives": [
{
"id": 1,
"answer": "Using tile maping."
},
{
"id": 3,
"answer": "Using terrain raycasting."
},
{
"id": 6,
"answer": "Using recursion."
},
{
"id": 12,
"answer": "Using navMesh agent."
}
],
"answerId": 12,
"userAnswerId": 0
}
],
"texts": [
{
"id": 42,
"tag": "confirm_exam",
"header": "Welcome to Interview Hub !! \nPlease confirm exam details :",
"text": "This exam is designed specifically for developer position with questions pertinent to requisites described at job application. \n\nYou will have a time period of 30 minutes to complete the exam after confirming the start. Note that if you leave or reload the page the current answers will be discarted. Other attempts will have to be solicited to '[email protected]"
},
{
"id": 99,
"tag": "confirm_submit",
"header": "Confirm submission details :",
"text": "You still have a time left to complete the exam. Are you sure you want to submmit your answers ?\n\nPlease verify all of them, after this exam submmision you won't be able change or restart the exam.\n\nAfter submission we will review you answers and get in touch with feeback."
}
],
"submissions": [
{
"answers": [
{
"questionId": 14,
"answerId": 3
},
{
"questionId": 31,
"answerId": 12
}
],
"id": 1,
"isDirty": false
},
{
"answers": [
{
"questionId": 14,
"answerId": 1
},
{
"questionId": 31,
"answerId": 0
},
{
"questionId": 44,
"answerId": 0
}
],
"id": 9,
"isDirty": false
}
]
}