-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.json
52 lines (52 loc) · 1.36 KB
/
questions.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
{
"easy" :
[
{
"type" : "mc",
"question" : "What class do we use to declare a variable to store text?",
"answer0" : "NSStrings",
"answer1" : "String",
"answer2" : "NSString",
"correctanswer" : 2
},
{
"type" : "mc",
"question" : "If you want to store a value for use in multiple methods in the same class, what are possible options?",
"answer0" : "Declare and use a property in that class",
"answer1" : "Declare and use an instance variable",
"answer2" : "Both answers above can be used",
"correctanswer" : 2
},
{
"type" : "mc",
"question" : "What does the keyword, IBOutlet, mean?",
"answer0" : "Denotes a property that connects to an element in your storyboard",
"answer1" : "Denotes a method that can be connected to an event of a UIElement in the storyboard",
"answer2" : "Denotes a variable that references an element in your storyboard",
"correctanswer" : 2
},
{
"type" : "image",
"imagename" : "EasyImage001",
"x_coord" : 100,
"y_coord" : 20,
"answerimage" : "EasyImage001Answer"
},
{
"type" : "image",
"imagename" : "EasyImage002",
"x_coord" : 30,
"y_coord" : 150,
"answerimage" : "EasyImage002Answer"
},
{
"type" : "image",
"imagename" : "EasyImage003",
"x_coord" : 100,
"y_coord" : 20,
"answerimage" : "EasyImage003Answer"
}
],
"medium" : [],
"hard" : []
}