-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathq.json
More file actions
38 lines (38 loc) · 836 Bytes
/
q.json
File metadata and controls
38 lines (38 loc) · 836 Bytes
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
{
"questionId": 1,
"type": "java 17",
"question": "Which of the following methods compile? (Choose all that apply.)",
"options": [
{
"optionId": "A",
"description": "public void january() { return; }",
"sequence": 1
},
{
"optionId": "B",
"description": "public int february() { return null;}",
"sequence": 2
},
{
"optionId": "C",
"description": "public void march() {}",
"sequence": 3
},
{
"optionId": "D",
"description": "public int april() { return 9;}",
"sequence": 4
},
{
"optionId": "E",
"description": "public int may() { return 9.0;}",
"sequence": 5
},
{
"optionId": "F",
"description": "public int june() { return;}"
"sequence": 6
}
],
"answers" : ["A","B"]
}