-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cquiz.json
37 lines (36 loc) · 1.02 KB
/
Cquiz.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
{
"question": [
"Q1. Which of the following operators can be applied on structre variables ?",
"Q2. What is the output : printf('%d',a++)?",
"Q3. Which of the following is correct when a macro definition includes arguments?",
"Q4. How many times will the following loop execute? for(j = 1; j <= 10; j = j-1) ?"
],
"answer": [
1,
2,
3,
2
],
"options": [
["Both of Above",
"Assignment(=)",
"Equality Comparison(==)",
"None"
],
["The value of (a + 1)",
"The current value of a",
"Error Message",
"Garbage"
],
["There should be at least one blank between the macro name and the opening parenthesis.",
"There should be only one blank between the macro name and the opening parenthesis.",
"The opening parenthesis should immediately follow the macro name.",
"All the above comments are correct."
],
["1",
"Forever",
"Never",
"10"
]
]
}