-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquiz.json
66 lines (66 loc) · 1.93 KB
/
quiz.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
{
"questions": [
{
"id":1,
"label":"You can create an emulator to simulate the configuration of a particular type of Android device using a tool like",
"correct_answer_id":3,
"answers":[
{"id":1, "label":"Theme Editor"},
{"id":2, "label":"Android SDK Manager"},
{"id":3, "label":"AVD Manager"},
{"id":4, "label":"Virtual Editor"}
]
},
{
"id":2,
"label":"What parameter specifies the Android API level that Gradle should use to compile your app?",
"correct_answer_id":2,
"answers":[
{"id":1, "label":"minSdkVersion"},
{"id":2, "label":"compileSdkVersion"},
{"id":3, "label":"targetSdkVersion"},
{"id":4, "label":"testSdkVersion"}
]
},
{
"id":3,
"label":"True or false? Scroll view can contain only one view, or view group, as a child ?",
"correct_answer_id":1,
"answers":[
{"id":1, "label":"True"},
{"id":2, "label":"False"}
]
},
{
"id":4,
"label":"What phrase means that the compiler validates types while compiling?",
"correct_answer_id":1,
"answers":[
{"id":1, "label":"Type safety"},
{"id":2, "label":"Data binding"},
{"id":3, "label":"Type validation"},
{"id":4, "label":"Wrong text"}
]
},
{
"id":5,
"label":"True or false? When your app goes into the background, it's not guaranteed to be destroyed. It may only be stopping and waiting for the user to return to it.",
"correct_answer_id":1,
"answers":[
{"id":1, "label":"True"},
{"id":2, "label":"False"}
]
},
{
"id":6,
"label":"To keep the UI running smoothly, use ___ for long-running tasks, such as all database operations.",
"correct_answer_id":1,
"answers":[
{"id":1, "label":"Coroutines"},
{"id":2, "label":"ViewModels"},
{"id":3, "label":"Returns"},
{"id":4, "label":"Managed threads"}
]
}
]
}