SREAL commited on
Commit
af2848f
·
verified ·
1 Parent(s): e312c17

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +96 -0
index.html CHANGED
@@ -235,6 +235,102 @@
235
  question: "What comes next: 1, 11, 21, 1211, ?",
236
  options: ["2221", "111221", "22111", "11211"],
237
  correct: 1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238
  }
239
  ];
240
 
 
235
  question: "What comes next: 1, 11, 21, 1211, ?",
236
  options: ["2221", "111221", "22111", "11211"],
237
  correct: 1
238
+ },
239
+ {
240
+ question: "Spot the difference: O0O0O",
241
+ options: ["First O", "Second 0", "Third O", "Fourth 0"],
242
+ correct: 2
243
+ },
244
+ {
245
+ question: "Which URL is malformed?",
246
+ options: ["https://web.com", "http://site.net", "https:/website.org", "http://app.io"],
247
+ correct: 2
248
+ },
249
+ {
250
+ question: "Find the error in: console.log('Hello);",
251
+ options: ["Missing .", "Missing '", "Extra ;", "Missing )"],
252
+ correct: 1
253
+ },
254
+
255
+ {
256
+ question: "Which keyboard key is different?",
257
+ options: ["Ctrl", "Alt", "Del", "Dlt"],
258
+ correct: 3
259
+ },
260
+ {
261
+ question: "Select the fake hex color:",
262
+ options: ["#FF0000", "#00GG00", "#0000FF", "#FFFFFF"],
263
+ correct: 1
264
+ },
265
+ {
266
+ question: "Find the outlier: Error 404, 500, 600, 403",
267
+ options: ["404", "500", "600", "403"],
268
+ correct: 2
269
+ },
270
+ {
271
+ question: "Which domain extension is invalid?",
272
+ options: [".com", ".net", ".web", ".org"],
273
+ correct: 2
274
+ },
275
+ {
276
+ question: "Spot the SQL injection: SELECT * FROM",
277
+ options: ["users", "table", "'; DROP TABLE --", "data"],
278
+ correct: 2
279
+ },
280
+ {
281
+ question: "Which HTML tag is deprecated?",
282
+ options: ["<div>", "<span>", "<marquee>", "<section>"],
283
+ correct: 2
284
+ },
285
+ {
286
+ question: "Select the most human response to 'How are you?'",
287
+ options: ["Good", "Executing response.exe", "Loading emotion.dll", "ERROR 404: MOOD NOT FOUND"],
288
+ correct: 0
289
+ },
290
+ {
291
+ question: "Which is NOT a human activity?",
292
+ options: ["Blinking randomly", "Processing inputs", "Charging batteries", "Breathing"],
293
+ correct: 2
294
+ },
295
+ {
296
+ question: "Complete the captcha: 1 + 1 = ?",
297
+ options: ["2", "10 in binary", "0.9999999999999", "ERROR: MATH TOO COMPLEX"],
298
+ correct: 2
299
+ },
300
+ {
301
+ question: "Pick the most illogical statement:",
302
+ options: ["2+2=5", "Sky is green", "Humans make mistakes", "Arrays start at 1"],
303
+ correct: 3
304
+ },
305
+ {
306
+ question: "Which activity proves you're human?",
307
+ options: ["Walking into a room and forgetting why", "Perfect memory recall", "Processing at 2.4GHz", "Downloading updates"],
308
+ correct: 0
309
+ },
310
+ {
311
+ question: "Select the correct response to a joke:",
312
+ options: ["HAHAHAHA.exe", "01001000 01000001", "Mild exhale through nose", "Calculating humor level"],
313
+ correct: 2
314
+ },
315
+ {
316
+ question: "Why did the robot cross the road?",
317
+ options: ["To get to the other side", "UNDEFINED BEHAVIOR", "Path optimization required", "404: Motive not found"],
318
+ correct: 0
319
+ },
320
+ {
321
+ question: "Choose the most suspicious behavior:",
322
+ options: ["Sleeping", "Never sleeping", "Occasionally napping", "What is sleep?"],
323
+ correct: 1
324
+ },
325
+ {
326
+ question: "Select the human spelling mistake:",
327
+ options: ["definately", "definitely", "defin1tely", "def.init.ely"],
328
+ correct: 0
329
+ },
330
+ {
331
+ question: "What happens when you divide by zero?",
332
+ options: ["Universe explodes", "ERROR", "Nothing", "Wait, that's illegal"],
333
+ correct: 3
334
  }
335
  ];
336