-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHQuestions.json
19416 lines (19416 loc) · 421 KB
/
HQuestions.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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[{
"question": {
"question": "Which of these Broadway musicals was NOT adapted from a film?",
"answer1": "Kinky Boots",
"answer2": "The Producers",
"answer3": "Grease"
},
"solution": {
"rightAnswer": "Grease",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "Which of these was declared unconstitutional in a landmark Supreme Court case?",
"answer1": "Missouri Compromise",
"answer2": "Louisiana Purchase",
"answer3": "Kansas-Nebraska Act"
},
"solution": {
"rightAnswer": "Missouri Compromise",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "What emoji was the first non-word to win Oxford Dictionary’s Word of the Year?",
"answer1": "Winking Face with Tongue",
"answer2": "Thumbs Up",
"answer3": "Face with Tears of Joy"
},
"solution": {
"rightAnswer": "Face with Tears of Joy",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "Which of these soul icons performed with a group whose name can also refer to fruit seeds?",
"answer1": "Gladys Knight",
"answer2": "Diana Ross",
"answer3": "Martha Reeves"
},
"solution": {
"rightAnswer": "Gladys Knight",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "What is the most prominent color on the helmet of the NFL’s Cleveland Browns?",
"answer1": "Orange",
"answer2": "Brown",
"answer3": "Red"
},
"solution": {
"rightAnswer": "Orange",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "What is the largest part of the human brain?",
"answer1": "Hippocampus",
"answer2": "Cerebrum",
"answer3": "Cerebral cortex"
},
"solution": {
"rightAnswer": "Cerebrum",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "Caryn Johnson is the original name of what entertainer?",
"answer1": "Whoopi Goldberg",
"answer2": "Madonna",
"answer3": "Pink"
},
"solution": {
"rightAnswer": "Whoopi Goldberg",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "Which of these is a country in the United Kingdom?",
"answer1": "Wales",
"answer2": "Denmark",
"answer3": "Iceland"
},
"solution": {
"rightAnswer": "Wales",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "Which of these animals is a ruminant?",
"answer1": "Deer",
"answer2": "Hedgehog",
"answer3": "Rattlesnake"
},
"solution": {
"rightAnswer": "Deer",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "Who was known to ancient Greeks as king of the gods?",
"answer1": "Zeus",
"answer2": "Hypnotoad",
"answer3": "Nyx"
},
"solution": {
"rightAnswer": "Zeus",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "The area of Las Vegas Boulevard with the city’s biggest hotels is commonly referred to as what?",
"answer1": "Mordor",
"answer2": "Diagon Alley",
"answer3": "The Strip"
},
"solution": {
"rightAnswer": "The Strip",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "Which of these is NOT one of the five basic human senses?",
"answer1": "Touch",
"answer2": "Smell",
"answer3": "Impending doom"
},
"solution": {
"rightAnswer": "Impending doom",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "Before truly hitting it big, which of these artists recorded a song for a breakfast cereal commercial?",
"answer1": "Rolling Stones",
"answer2": "Bob Dylan",
"answer3": "Elton John"
},
"solution": {
"rightAnswer": "Rolling Stones",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "Which of these terms is used to refer to a group of scavenging birds of prey?",
"answer1": "Venue",
"answer2": "Span",
"answer3": "Coalition"
},
"solution": {
"rightAnswer": "Venue",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "More than 50 years after the US Revolution, what state almost went to war with England?",
"answer1": "Virginia",
"answer2": "Maine",
"answer3": "New York"
},
"solution": {
"rightAnswer": "Maine",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "According to the ghostly whisper in the movie “Field of Dreams,” what will happen “If you build it”?",
"answer1": "He will come",
"answer2": "They will come",
"answer3": "They will all come"
},
"solution": {
"rightAnswer": "He will come",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "Which of these is NOT the nickname of a known, real-life pirate?",
"answer1": "Calico Jack",
"answer2": "Billy Bones",
"answer3": "Blackbeard"
},
"solution": {
"rightAnswer": "Billy Bones",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "Which of these frightening things was invented by the author of “James and the Giant Peach”?",
"answer1": "Howling Fantods",
"answer2": "Marsh-wiggles",
"answer3": "Vermicious Knids"
},
"solution": {
"rightAnswer": "Vermicious Knids",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "The classic American National Standards Institute recipe calls for what liquor in a martini?",
"answer1": "Gin",
"answer2": "Rye",
"answer3": "Vodka"
},
"solution": {
"rightAnswer": "Gin",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "Which of these is NOT the name of a world-famous Olsen twin?",
"answer1": "Elizabeth",
"answer2": "Mary-Kate",
"answer3": "Ashley"
},
"solution": {
"rightAnswer": "Elizabeth",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "Which of these atomic building blocks is the least massive?",
"answer1": "Neutron",
"answer2": "Proton",
"answer3": "Electron"
},
"solution": {
"rightAnswer": "Electron",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "Which of these is considered a primary color?",
"answer1": "Red",
"answer2": "Chartreuse",
"answer3": "Vermillion"
},
"solution": {
"rightAnswer": "Red",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "Which of these is traditionally used to drive nails into walls?",
"answer1": "Hammer",
"answer2": "Stretch limo",
"answer3": "Pillow"
},
"solution": {
"rightAnswer": "Hammer",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "What is the best letter-based grade that students can typically get on tests?",
"answer1": "Sashay away",
"answer2": "A+",
"answer3": "F-"
},
"solution": {
"rightAnswer": "A+",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "Which of these words does NOT appear in the title of a Dr. Seuss book?",
"answer1": "Kwuggerbug",
"answer2": "Wocket",
"answer3": "Biffle"
},
"solution": {
"rightAnswer": "Biffle",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "The only lizard known to regularly swim in the ocean is a species of what?",
"answer1": "Iguana",
"answer2": "Komodo dragon",
"answer3": "Gecko"
},
"solution": {
"rightAnswer": "Iguana",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "Which of these Sanrio characters is a family member of Hello Kitty’s?",
"answer1": "Dear Daniel",
"answer2": "My Melody",
"answer3": "Mimmy"
},
"solution": {
"rightAnswer": "Mimmy",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "Which of these US states does NOT border both Florida and Tennessee?",
"answer1": "Georgia",
"answer2": "Alabama",
"answer3": "Mississippi"
},
"solution": {
"rightAnswer": "Mississippi",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "In which of these classic rock songs is the title part of the lyrics?",
"answer1": "Bohemian Rhapsody",
"answer2": "My Generation",
"answer3": "A Day in the Life"
},
"solution": {
"rightAnswer": "My Generation",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "In its traditional form, which of these sauces is considered vegan?",
"answer1": "Fish sauce",
"answer2": "Duck sauce",
"answer3": "Worcestershire sauce"
},
"solution": {
"rightAnswer": "Duck sauce",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "What film director is famous for making cameo appearances in most of his own movies?",
"answer1": "George Lucas",
"answer2": "Alfred Hitchcock",
"answer3": "Steven Spielberg"
},
"solution": {
"rightAnswer": "Alfred Hitchcock",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "What is the correct spelling of a word that means “burial ground”?",
"answer1": "Cematery",
"answer2": "Cemetery",
"answer3": "Cemetary"
},
"solution": {
"rightAnswer": "Cemetery",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "Which of these creates the most volatile reaction when added to vinegar?",
"answer1": "Baking soda",
"answer2": "Salt",
"answer3": "Sugar"
},
"solution": {
"rightAnswer": "Baking soda",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "What is the world-famous statue Venus de Milo famously missing?",
"answer1": "Legs",
"answer2": "Arms",
"answer3": "Sense of direction"
},
"solution": {
"rightAnswer": "Arms",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "Bowling balls are mainly designed to knock down what?",
"answer1": "Spools",
"answer2": "Needles",
"answer3": "Pins"
},
"solution": {
"rightAnswer": "Pins",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "Many US states have laws requiring dogs in public places to be on what?",
"answer1": "Cloud nine",
"answer2": "Social media",
"answer3": "Leashes"
},
"solution": {
"rightAnswer": "Leashes",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "The youngest person ever nominated for an acting Oscar competed in what category?",
"answer1": "Supporting actress",
"answer2": "Supporting actor",
"answer3": "Actress"
},
"solution": {
"rightAnswer": "Supporting actor",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "What object is displayed on the national flag of Portugal?",
"answer1": "Orrery",
"answer2": "Astrolabe",
"answer3": "Armillary sphere"
},
"solution": {
"rightAnswer": "Armillary sphere",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "What “SNL” character was played by a person who also designed an album cover for Steely Dan?",
"answer1": "Unfrozen Caveman Lawyer",
"answer2": "Church Lady",
"answer3": "Foreign Man"
},
"solution": {
"rightAnswer": "Unfrozen Caveman Lawyer",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "The opening sentence of the classic cyberpunk novel “Neuromancer” famously compares the sky to what?",
"answer1": "TV screen",
"answer2": "Forgotten toy",
"answer3": "Worn pavement"
},
"solution": {
"rightAnswer": "TV screen",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "On what surface does the annual Albert Lee Appliance Cup take place?",
"answer1": "Mud",
"answer2": "Water",
"answer3": "Ice"
},
"solution": {
"rightAnswer": "Water",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "The Italian word “morbido” literally translates to what in English?",
"answer1": "Soft",
"answer2": "Scary",
"answer3": "Smart"
},
"solution": {
"rightAnswer": "Soft",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "What song on the “Hamilton” soundtrack shares its title with an Ariana Grande single?",
"answer1": "You’ll Be Back",
"answer2": "Burn",
"answer3": "One Last Time"
},
"solution": {
"rightAnswer": "One Last Time",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "The first upgrade to the iMac was available in five models that were all named after what?",
"answer1": "Felines",
"answer2": "Fruits",
"answer3": "Stars"
},
"solution": {
"rightAnswer": "Fruits",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "Often seen on bathroom doors, what do the initials “WC” traditionally stand for?",
"answer1": "Washroom compartment",
"answer2": "Waiting chamber",
"answer3": "Water closet"
},
"solution": {
"rightAnswer": "Water closet",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "Which of these would you typically use trigonometry to measure?",
"answer1": "Mortgage interest",
"answer2": "Larry King's age",
"answer3": "Height of a tree"
},
"solution": {
"rightAnswer": "Height of a tree",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "Mister Rogers is known for saying which of these phrases?",
"answer1": "Smiling equals weakness",
"answer2": "Won’t you be my neighbor",
"answer3": "Stay chill in the chat"
},
"solution": {
"rightAnswer": "Won’t you be my neighbor",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "Where do clouds most often appear?",
"answer1": "The bottom of wells",
"answer2": "On the ocean floor",
"answer3": "In the sky"
},
"solution": {
"rightAnswer": "In the sky",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "With which three letters do the most country names end?",
"answer1": "-NIA",
"answer2": "-TAN",
"answer3": "-RIA"
},
"solution": {
"rightAnswer": "-NIA",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "Which of these places has had the longest-reigning sovereign head of state?",
"answer1": "Thailand",
"answer2": "Japan",
"answer3": "United Kingdom"
},
"solution": {
"rightAnswer": "Thailand",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "What is the capital of the country with the world’s oldest working library?",
"answer1": "Paris",
"answer2": "Rabat",
"answer3": "Cairo"
},
"solution": {
"rightAnswer": "Rabat",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "Which of these albums is the overall top seller by a solo female artist, as certified by RIAA?",
"answer1": "Come On Over",
"answer2": "21",
"answer3": "Jagged Little Pill"
},
"solution": {
"rightAnswer": "Come On Over",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "Jackie Robinson played his minor league baseball home games in what city?",
"answer1": "Jersey City",
"answer2": "Brooklyn",
"answer3": "Montreal"
},
"solution": {
"rightAnswer": "Montreal",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "Two of the Seven Wonders of the Ancient World were located in which of these modern-day countries?",
"answer1": "Iraq",
"answer2": "Turkey",
"answer3": "Iran"
},
"solution": {
"rightAnswer": "Turkey",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "Which of these is mentioned last in the original “Law & Order” intro?",
"answer1": "District attorneys",
"answer2": "Police",
"answer3": "Offenders"
},
"solution": {
"rightAnswer": "Offenders",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "Which of these does NOT correctly pair a US president with a White House addition made during his term?",
"answer1": "Truman / bowling alley",
"answer2": "Clinton / hot tub",
"answer3": "Kennedy / Rose Garden"
},
"solution": {
"rightAnswer": "Kennedy / Rose Garden",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "Which of these international landmarks is located farthest north?",
"answer1": "Statue of Liberty",
"answer2": "Taj Mahal",
"answer3": "Leaning Tower of Pisa"
},
"solution": {
"rightAnswer": "Leaning Tower of Pisa",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "Which of these bands titled its debut album with just a number?",
"answer1": "Nirvana",
"answer2": "Stone Temple Pilots",
"answer3": "Pearl Jam"
},
"solution": {
"rightAnswer": "Pearl Jam",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "Mayday was the nickname of a character on what classic sitcom?",
"answer1": "Cheers",
"answer2": "Frasier",
"answer3": "Murphy Brown"
},
"solution": {
"rightAnswer": "Cheers",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "Which of these animals typically do NOT grow antlers?",
"answer1": "Female moose",
"answer2": "Female reindeer",
"answer3": "Male caribou"
},
"solution": {
"rightAnswer": "Female moose",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "If the last day of a given month is a Saturday, the following month must contain which of these?",
"answer1": "Friday the 13th",
"answer2": "31 days",
"answer3": "Blue moon"
},
"solution": {
"rightAnswer": "Friday the 13th",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "What location holds the official record for the hottest place ever measured in the world?",
"answer1": "Doha, Qatar",
"answer2": "Death Valley, California",
"answer3": "El Azizia, Libya"
},
"solution": {
"rightAnswer": "Death Valley, California",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "Which of these is designed to clean windows?",
"answer1": "Squeegee",
"answer2": "Snorkel",
"answer3": "Mallet"
},
"solution": {
"rightAnswer": "Squeegee",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "Which of these characters is usually shown wearing shorts?",
"answer1": "Donald Duck",
"answer2": "Mickey Mouse",
"answer3": "Winnie the Pooh"
},
"solution": {
"rightAnswer": "Mickey Mouse",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "According to an old saying, “If at first you don’t succeed,” you should do what?",
"answer1": "Like and subscribe",
"answer2": "Try, try again",
"answer3": "Use an extra life"
},
"solution": {
"rightAnswer": "Try, try again",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "In the classic party game, on what animal do you pin the tail?",
"answer1": "Baleen whale",
"answer2": "Donkey",
"answer3": "Honey badger"
},
"solution": {
"rightAnswer": "Donkey",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "The lyric “dark side of the moon” is sung in what Pink Floyd song?",
"answer1": "Brain Damage",
"answer2": "Eclipse",
"answer3": "Any Colour You Like"
},
"solution": {
"rightAnswer": "Brain Damage",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "Which of these Triple Crown-winning horses ran the Kentucky Derby the fastest?",
"answer1": "War Admiral",
"answer2": "American Pharoah",
"answer3": "Seattle Slew"
},
"solution": {
"rightAnswer": "Seattle Slew",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "Which of these disputed territories is NOT claimed by the nation of Georgia?",
"answer1": "Transnistria",
"answer2": "Abkhazia",
"answer3": "South Ossetia"
},
"solution": {
"rightAnswer": "Transnistria",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "Which of these words means the opposite of “deasil”?",
"answer1": "Catty-corner",
"answer2": "Widdershins",
"answer3": "Clockwise"
},
"solution": {
"rightAnswer": "Widdershins",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "The first moons discovered orbiting a planet other than Earth are known as what?",
"answer1": "Newtonian",
"answer2": "Galilean",
"answer3": "Copernican"
},
"solution": {
"rightAnswer": "Galilean",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "The 2017 fantasy novel “The Dark Prophecy” is set in the same universe as what other novel?",
"answer1": "The Lightning Thief",
"answer2": "The Amber Spyglass",
"answer3": "Dragonflight"
},
"solution": {
"rightAnswer": "The Lightning Thief",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "For what object did “Time” magazine bend the rules for its “Person of the Year” award?",
"answer1": "Mirror",
"answer2": "Television",
"answer3": "Computer"
},
"solution": {
"rightAnswer": "Computer",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "When used as a slang term for money, how much is a “rack”?",
"answer1": "$20",
"answer2": "$100",
"answer3": "$1000"
},
"solution": {
"rightAnswer": "$1000",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "The speed of sound is named for what Austrian physicist?",
"answer1": "Hans Warp",
"answer2": "Klaus Züm",
"answer3": "Ernst Mach"
},
"solution": {
"rightAnswer": "Ernst Mach",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "In what sport would you most likely use the term “bullseye”?",
"answer1": "Golf",
"answer2": "Shuffleboard",
"answer3": "Darts"
},
"solution": {
"rightAnswer": "Darts",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "Which of these statements appears in the famous “Sermon on the Mount” in the Bible?",
"answer1": "My car has a leak",
"answer2": "Knee boots on fleek",
"answer3": "Blessed are the meek"
},
"solution": {
"rightAnswer": "Blessed are the meek",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "In which of these directions can most standard elevators travel?",
"answer1": "North by northwest",
"answer2": "Up",
"answer3": "Left"
},
"solution": {
"rightAnswer": "Up",
"rightAnswerIndex": 2
}
},
{
"question": {
"question": "The company whose stock symbol is simply “V” mainly provides which of these?",
"answer1": "Phone services",
"answer2": "Cable TV",
"answer3": "Financial services"
},
"solution": {
"rightAnswer": "Financial services",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "What colors dominate the flag of the world’s smallest nation?",
"answer1": "Yellow / white",
"answer2": "Red / white",
"answer3": "Blue / white"
},
"solution": {
"rightAnswer": "Yellow / white",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "Which of these people served as vice president under the person on the US $50 bill?",
"answer1": "Aaron Burr",
"answer2": "Andrew Johnson",
"answer3": "Henry Wilson"
},
"solution": {
"rightAnswer": "Henry Wilson",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "Which of these MLS soccer teams does NOT play its home games in the US?",
"answer1": "Sounders",
"answer2": "Timber",
"answer3": "Impact"
},
"solution": {
"rightAnswer": "Impact",
"rightAnswerIndex": 3
}
},
{
"question": {
"question": "By definition, if a Middle Eastern dish has dopiaza in its name, it will include what ingredient?",
"answer1": "Onion",
"answer2": "Tomato",
"answer3": "Rice"
},
"solution": {
"rightAnswer": "Onion",
"rightAnswerIndex": 1
}
},
{
"question": {
"question": "In which of these TV shows did the star NOT play a character with the same first name?",
"answer1": "The Drew Carey Show",