-
Notifications
You must be signed in to change notification settings - Fork 3
/
questions.json
222 lines (222 loc) · 5.52 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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
[
{
"text" : "Who is the creator of Javascript?",
"answers" : [
{ "text": "Douglas Crockford"},
{ "text": "Brendan Eich"},
{ "text": "Marijn Haverbeke"},
{ "text": "John Resig"}
],
"correct" : 1
},{
"text" : "Which of the following is NOT a MVC Framework?",
"answers" : [
{ "text": "Angular"},
{ "text": "Backbone"},
{ "text": "Batman"},
{ "text": "Structs"}
],
"correct" : 3
},{
"text" : "How do you create a new YUI3 sandbox?",
"answers" : [
{ "text": "Y.use(...)"},
{ "text": "YUI().use(...)"},
{ "text": "YUI.use(...)"},
{ "text": "Y().use(...)"}
],
"correct" : 1
},{
"text" : "What does CSS stand for?",
"answers" : [
{ "text": "Creative Style Sheets"},
{ "text": "Computer Style Sheets"},
{ "text": "Cascading Style Sheets"},
{ "text": "Colorful Style Sheets"}
],
"correct" : 2
},{
"text" : "Which of the following is NOT a reserved word in Javascript?",
"answers" : [
{ "text": "break"},
{ "text": "finally"},
{ "text": "small"},
{ "text": "package"}
],
"correct" : 2
},{
"text" : "Which of the following is NOT a valid CSS 'display' property",
"answers" : [
{ "text": "none"},
{ "text": "block"},
{ "text": "inline"},
{ "text": "hidden"},
{ "text": "run-in"}
],
"correct" : 3
},{
"text" : "In which year is the HTML specification supposed to be complete and finalized?",
"answers" : [
{ "text": "2022"},
{ "text": "2015"},
{ "text": "2019"},
{ "text": "2013"}
],
"correct" : 0
},{
"text" : "Which of the following conditions evaluates to True?",
"answers" : [
{ "text": "NaN === NaN"},
{ "text": "0.1 + 0.2 == 0.3"},
{ "text": "\"string\" instanceof String"},
{ "text": "typeof NaN === \"number\""}
],
"correct" : 3
},{
"text" : "What javascript method returns which character occurs at the 5th position in a string?",
"answers" : [
{ "text": "Substring()"},
{ "text": "String()"},
{ "text": "Stringlength()"},
{ "text": "CharAt()"}
],
"correct" : 3
},{
"text" : "Which of these declarations will result in a box whose bottom right corner has a radius of 20px?",
"answers" : [
{ "text": "border-radius: 40px 20px;"},
{ "text": "border-radius: 40px 20px 20px 80px;"},
{ "text": "border-radius: 20px 20px 40px 20px;"},
{ "text": "border-radius: 20px 40px 60px 80px;"}
],
"correct" : 1
},{
"text" : "Which of the following conditions does not evaluate to False?",
"answers" : [
{ "text": "0"},
{ "text": "''"},
{ "text": "Nan"},
{ "text": "undefined"},
{ "text": "new Boolean(false)"}
],
"correct" : 4
},{
"text" : "Which of the following methods & properties does not cause a DOM reflow?",
"answers" : [
{ "text": "offsetHeight"},
{ "text": "scrollTop"},
{ "text": "innerText"},
{ "text": "createDocumentFragment"}
],
"correct" : 3
},{
"text" : "Which of the following events fire first on a touch device?",
"answers" : [
{ "text": "touchdown"},
{ "text": "touchstart"},
{ "text": "touchmove"},
{ "text": "touchbegin"}
],
"correct" : 1
},{
"text" : "What is the maximum number of CSS files that you can include on a single page in Internet Explorer?",
"answers" : [
{ "text": "16"},
{ "text": "32"},
{ "text": "100"},
{ "text": "no limit"}
],
"correct" : 1
},{
"text" : "How many performance rules are evaluated in the Yslow tool?",
"answers" : [
{ "text": "12"},
{ "text": "18"},
{ "text": "23"},
{ "text": "32"}
],
"correct" : 2
},{
"text" : "Which CSS selector has the highest specificity?",
"answers" : [
{ "text": "#section input"},
{ "text": ".section input"},
{ "text": ".section .input"},
{ "text": "#section #input"}
],
"correct" : 3
},{
"text" : "What does the third value in the declaration specify in the declaration \"box-shadow: 5px 5px 5px #888;\"? ",
"answers" : [
{ "text": "X Offset"},
{ "text": "Y Offset"},
{ "text": "Blur Radius"},
{ "text": "Margin"}
],
"correct" : 2
},{
"text" : "How do you loop through the properites of an object?",
"answers" : [
{ "text": "for(o in object){ }"},
{ "text": "for(i=0;i<o.length;i++){ }"},
{ "text": "foreach(o in object){ }"},
{ "text": "while(o in object){ }"}
],
"correct" : 0
},{
"text" : "Which of these is NOT a templating framework?",
"answers" : [
{ "text": "Handlebars"},
{ "text": "Mustache"},
{ "text": "Jade"},
{ "text": "Curlies"}
],
"correct" : 3
},{
"text" : "Who coined the term AJAX?",
"answers" : [
{ "text": "Chris Ullman"},
{ "text": "John Resig"},
{ "text": "Douglas Crockford"},
{ "text": "Jesse James Garrett"}
],
"correct" : 3
},{
"text" : "Which of the following Javascript Engines does FireFox use?",
"answers" : [
{ "text": "V8"},
{ "text": "Spider Monkey"},
{ "text": "SquirrelFish"},
{ "text": "Chakra"}
],
"correct" : 1
},{
"text" : "Which of the following Components is not part of YUI3 App Framework?",
"answers" : [
{ "text": "Model"},
{ "text": "App"},
{ "text": "Model List"},
{ "text": "Controller"},
{ "text": "View"}
],
"correct" : 3
},{
"text" : "What type of variable scoping does javascript implement",
"answers" : [
{ "text": "Functional"},
{ "text": "Block"},
{ "text": "Class"},
{ "text": "None of the above"}
],
"correct" : 0
},{
"text" : "Who coined the term JSON?",
"answers" : [
{ "text": "Chris Ullman"},
{ "text": "John Resig"},
{ "text": "Douglas Crockford"},
{ "text": "Jesse James Garrett"}
],
"correct" : 2
}
]