-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrainbusters.json
1016 lines (1016 loc) · 30.7 KB
/
brainbusters.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
[
{
"id": 200,
"user_id": 2,
"hidden": "no",
"question": "Who are the two main actors in the 1987 comedy film \"Planes, Trains and Automobiles\"?",
"ans1": "Bill Murray and Dan Aykroyd",
"ans2": "Chevy Chase and John Belushi",
"ans3": "John Candy and Steve Martin",
"ans4": "Eddie Murphy and Dan Aykroyd",
"correct": 3,
"category": "movie",
"date_added": "2023-06-24 23:35:28"
},
{
"id": 199,
"user_id": 2,
"hidden": "no",
"question": "Who played the role of the inspirational teacher John Keating in \"Dead Poets Society\"?",
"ans1": "Robert Williams",
"ans2": "Robert Redford",
"ans3": "Robin Williams",
"ans4": "Robert De Niro",
"correct": 3,
"category": "movie",
"date_added": "2023-06-24 23:32:29"
},
{
"id": 198,
"user_id": 2,
"hidden": "no",
"question": "Who directed the 1939 adventure film \"Gunga Din\"?",
"ans1": "George Lucas",
"ans2": "George Stevens",
"ans3": "Howard Hawks",
"ans4": "John Ford",
"correct": 2,
"category": "movie",
"date_added": "2023-06-24 23:28:48"
},
{
"id": 197,
"user_id": 2,
"hidden": "no",
"question": "Which film won the Academy Award for Best Picture in 2020?",
"ans1": "Parasite",
"ans2": "1917",
"ans3": "Once Upon a Time in Hollywood",
"ans4": "The Irishman",
"correct": 1,
"category": "movie",
"date_added": "2023-06-24 23:26:12"
},
{
"id": 196,
"user_id": 2,
"hidden": "no",
"question": "Who was the first Detroit Tigers player to have their jersey number retired by the team?",
"ans1": "Al Kaline",
"ans2": "Ty Cobb",
"ans3": "Hank Greenberg",
"ans4": "Mickey Cochrane",
"correct": 1,
"category": "sport",
"date_added": "2023-06-24 23:13:30"
},
{
"id": 195,
"user_id": 2,
"hidden": "no",
"question": "Who is the all-time leading rusher for the Detroit Lions?",
"ans1": "Billy Sims",
"ans2": "Barry Sanders",
"ans3": "",
"ans4": "",
"correct": 2,
"category": "sport",
"date_added": "2023-06-24 23:11:33"
},
{
"id": 192,
"user_id": 2,
"hidden": "no",
"question": "What is the name of the Detroit Tigers' mascot?",
"ans1": "Claws",
"ans2": "Paws",
"ans3": "Furry",
"ans4": "",
"correct": 2,
"category": "sport",
"date_added": "2023-03-17 16:06:49"
},
{
"id": 191,
"user_id": 2,
"hidden": "no",
"question": "What year were the Detroit Tigers established?",
"ans1": "1894",
"ans2": "1901",
"ans3": "1905",
"ans4": "1927",
"correct": 2,
"category": "sport",
"date_added": "2023-03-17 16:05:02"
},
{
"id": 190,
"user_id": 2,
"hidden": "no",
"question": "What was the name of the Detroit Tigers' previous stadium before they moved to Comerica Park?",
"ans1": "Briggs Stadium",
"ans2": "Tiger Stadium",
"ans3": "Navin Field",
"ans4": "Motor City Stadium",
"correct": 2,
"category": "sport",
"date_added": "2023-03-17 16:02:35"
},
{
"id": 189,
"user_id": 2,
"hidden": "no",
"question": "Which planet in our solar system has the shortest day?",
"ans1": "Mercury",
"ans2": "Venus",
"ans3": "Mars",
"ans4": "Jupiter",
"correct": 4,
"category": "space",
"date_added": "2023-03-17 15:58:53"
},
{
"id": 188,
"user_id": 2,
"hidden": "no",
"question": "What is the name of the phenomenon where a star explodes in a brilliant display of light?",
"ans1": "Black hole",
"ans2": " Nebula",
"ans3": "Quasar",
"ans4": "Supernova",
"correct": 4,
"category": "space",
"date_added": "2023-03-17 15:56:36"
},
{
"id": 187,
"user_id": 2,
"hidden": "no",
"question": "What is the name of the constellation that contains the North Star?",
"ans1": "Orion",
"ans2": "Ursa Major",
"ans3": "Cassiopeia",
"ans4": "Ursa Minor",
"correct": 2,
"category": "space",
"date_added": "2023-03-17 15:55:02"
},
{
"id": 186,
"user_id": 2,
"hidden": "no",
"question": "Which Detroit Tigers player holds the franchise record for stolen bases in a single season?",
"ans1": " Ty Cobb",
"ans2": "Kirk Gibson",
"ans3": "Lou Whitaker",
"ans4": "Alan Trammell",
"correct": 1,
"category": "sport",
"date_added": "2023-03-17 15:49:08"
},
{
"id": 185,
"user_id": 2,
"hidden": "no",
"question": "Who is the all-time home run leader for the Detroit Tigers?",
"ans1": "Al Kaline",
"ans2": "Miguel Cabrera",
"ans3": "Norm Cash",
"ans4": "Hank Greenberg",
"correct": 2,
"category": "sport",
"date_added": "2023-03-17 15:44:57"
},
{
"id": 184,
"user_id": 2,
"hidden": "no",
"question": "What is the term used to describe the length of time that the shutter is open and light is allowed to enter the camera?\r\n",
"ans1": "Aperture",
"ans2": "Shutter speed",
"ans3": "ISO",
"ans4": " F-stop",
"correct": 2,
"category": "photography",
"date_added": "2023-03-17 15:32:54"
},
{
"id": 183,
"user_id": 2,
"hidden": "no",
"question": "What is the name of the software that allows LEGO builders to create virtual models of their creations?",
"ans1": "LEGO Creator",
"ans2": "LEGO Digital Designer",
"ans3": "LEGO Mindstorms",
"ans4": "Brinklink Studio",
"correct": 4,
"category": "lego",
"date_added": "2023-03-17 07:20:48"
},
{
"id": 182,
"user_id": 2,
"hidden": "no",
"question": "What is the name of the LEGO Group's charitable foundation?",
"ans1": "LEGO Foundation",
"ans2": "LEGO Giveback",
"ans3": "LEGO Cares",
"ans4": "",
"correct": 1,
"category": "lego",
"date_added": "2023-03-17 07:18:58"
},
{
"id": 181,
"user_id": 2,
"hidden": "no",
"question": "What is the largest LEGO set ever made in terms of piece count?",
"ans1": "Taj Mahal",
"ans2": "Star Wars Millennium Falcon",
"ans3": "Colosseum",
"ans4": "World Map",
"correct": 4,
"category": "lego",
"date_added": "2023-03-17 07:16:37"
},
{
"id": 180,
"user_id": 2,
"hidden": "no",
"question": "What was the first unmanned probe to land on the planet Mars?",
"ans1": "Curiosity",
"ans2": "Viking II",
"ans3": "Viking 1",
"ans4": "Apollo 11",
"correct": 3,
"category": "space",
"date_added": "2023-02-18 23:50:05"
},
{
"id": 179,
"user_id": 2,
"hidden": "no",
"question": "What happened on January 28, 1986?",
"ans1": "Space Shuttle Columbia Disintegrates on Reentry!",
"ans2": "Space Shuttle Challenger Disaster",
"ans3": "Apollo 1 Tragic Fire",
"ans4": "",
"correct": 2,
"category": "space",
"date_added": "2023-02-18 23:44:50"
},
{
"id": 178,
"user_id": 2,
"hidden": "no",
"question": "Who has won the most golf majors ever?",
"ans1": "Jack Nicklaus",
"ans2": "Tiger Woods",
"ans3": "Arnold Palmer",
"ans4": "Tom Watson",
"correct": 1,
"category": "sport",
"date_added": "2023-02-18 23:39:19"
},
{
"id": 177,
"user_id": 2,
"hidden": "no",
"question": "What running back has the most rushing yards in the NFL? ",
"ans1": "Walter Payton",
"ans2": "Frank Gore",
"ans3": "Emmitt Smith",
"ans4": "",
"correct": 3,
"category": "sport",
"date_added": "2023-02-18 23:34:31"
},
{
"id": 176,
"user_id": 2,
"hidden": "no",
"question": "How many Super Bowls has Tom Brady won?",
"ans1": "10",
"ans2": "7",
"ans3": "5",
"ans4": "6",
"correct": 2,
"category": "sport",
"date_added": "2023-02-18 23:31:58"
},
{
"id": 175,
"user_id": 2,
"hidden": "no",
"question": "The name \u201cLego\u201d comes from the Danish word \u201cleg godt,\u201d which means?",
"ans1": "Party On",
"ans2": "Play Well",
"ans3": "Carpe Diem!",
"ans4": "Seize the Day Dude",
"correct": 2,
"category": "lego",
"date_added": "2023-02-05 10:53:11"
},
{
"id": 12,
"user_id": 2,
"hidden": "no",
"question": " Which \"Lego\" toy for children under the age of five was invented in 1967?",
"ans1": "Duplo",
"ans2": "Toddler Bricks",
"ans3": "",
"ans4": "",
"correct": 1,
"category": "lego",
"date_added": "2023-02-05 10:52:35"
},
{
"id": 6,
"user_id": 2,
"hidden": "no",
"question": "The LEGO Star Wars Ultimate Millennium Falcon 75192 is in the top 5 of all time when it comes to popularity? ",
"ans1": "True",
"ans2": "False",
"ans3": "",
"ans4": "",
"correct": 1,
"category": "lego",
"date_added": "2023-02-05 10:52:27"
},
{
"id": 5,
"user_id": 2,
"hidden": "no",
"question": "The plural for LEGO is",
"ans1": "LEGOS",
"ans2": "LEGO",
"ans3": "LEGI",
"ans4": "",
"correct": 2,
"category": "lego",
"date_added": "2023-02-05 10:52:19"
},
{
"id": 4,
"user_id": 2,
"hidden": "no",
"question": "Who founded LEGO?",
"ans1": "Michael Laudrup",
"ans2": "Ole Kirk Christiansen",
"ans3": "Nikolaj Coster-Waldau",
"ans4": "Nicklas Bendtner",
"correct": 2,
"category": "lego",
"date_added": "2023-02-05 10:52:09"
},
{
"id": 3,
"user_id": 2,
"hidden": "no",
"question": "Who is the largest wheel manufacturer in the world?",
"ans1": "Firestone",
"ans2": "Bridgestone",
"ans3": "LEGO",
"ans4": "",
"correct": 3,
"category": "lego",
"date_added": "2023-02-05 10:52:02"
},
{
"id": 2,
"user_id": 2,
"hidden": "no",
"question": "What country does LEGO originate from? ",
"ans1": "Denmark",
"ans2": "Norway",
"ans3": "United States",
"ans4": "Poland",
"correct": 1,
"category": "lego",
"date_added": "2023-02-05 10:51:51"
},
{
"id": 161,
"user_id": 2,
"hidden": "no",
"question": "Who was the manager of the 1984 Detroit Tigers?",
"ans1": "Billy Martin",
"ans2": "Alan Trammell",
"ans3": "Sparky Anderson",
"ans4": "A. J. Hinch",
"correct": 3,
"category": "sport",
"date_added": "2022-11-26 19:49:35"
},
{
"id": 160,
"user_id": 2,
"hidden": "no",
"question": "What other sport did Kirk Gibson excel in college besides baseball?",
"ans1": "Basketball",
"ans2": "Wrestling",
"ans3": "Football",
"ans4": "",
"correct": 3,
"category": "sport",
"date_added": "2022-11-26 19:40:46"
},
{
"id": 159,
"user_id": 2,
"hidden": "no",
"question": "What team did the Detroit Tigers play in the 1984 World Series? ",
"ans1": "San Francisco Giants",
"ans2": "San Diego Padries",
"ans3": "Los Angeles Dodgers",
"ans4": "St. Louis Cardinals",
"correct": 2,
"category": "sport",
"date_added": "2022-11-26 19:18:35"
},
{
"id": 158,
"user_id": 2,
"hidden": "no",
"question": "Follow the Sun was about what real life golf pro?",
"ans1": "Bobby Jones",
"ans2": "Arnold Palmer",
"ans3": "Ben Hogan",
"ans4": "Jack Nicklaus",
"correct": 3,
"category": "movie",
"date_added": "2022-02-14 22:01:25"
},
{
"id": 157,
"user_id": 2,
"hidden": "no",
"question": "What movie did the following come from? \"Ray, people will come Ray. They'll come to Iowa for reasons they can't even fathom. They'll turn up your driveway not knowing for sure why they're doing it...\" (Hint: Stars Kevin Costner)",
"ans1": "The Natural",
"ans2": "Field Of Dreams",
"ans3": "Eight Men Out",
"ans4": "Pride of the Yankees",
"correct": 2,
"category": "movie",
"date_added": "2022-02-14 21:59:33"
},
{
"id": 156,
"user_id": 2,
"hidden": "no",
"question": "A young boy is arrested for writing a computer virus and is banned from using a computer until his 18th Birthday. What is the name of the movie?",
"ans1": "The Net",
"ans2": "Wargames",
"ans3": "Hackers",
"ans4": "Code Breakers",
"correct": 3,
"category": "movie",
"date_added": "2022-02-14 15:42:55"
},
{
"id": 155,
"user_id": 2,
"hidden": "no",
"question": "What movie did Dennis Hopper make his debut in?",
"ans1": "True Grit",
"ans2": "Rebel Without a Cause",
"ans3": "Speed",
"ans4": "Easy Rider",
"correct": 2,
"category": "movie",
"date_added": "2022-02-14 15:40:47"
},
{
"id": 154,
"user_id": 2,
"hidden": "no",
"question": "\"You Maniacs! You blew it up! Ah, damn you! God damn you all to hell! \" What movie did this famous line come from?",
"ans1": "Planet of the Apes (1968)",
"ans2": "The Day After Tomorrow",
"ans3": "The Matrix",
"ans4": "Soylent Green",
"correct": 1,
"category": "movie",
"date_added": "2022-02-14 07:37:24"
},
{
"id": 153,
"user_id": 2,
"hidden": "no",
"question": "Who were the two main actors in the movie \"Casablanca\"?",
"ans1": "Humphrey Bogart and Audrey Hepburn",
"ans2": "Humphrey Bogart and Lauren Bacall",
"ans3": "Humphrey Bogart and Katharine Hepburn",
"ans4": "Humphrey Bogart and Ingrid Bergman",
"correct": 4,
"category": "movie",
"date_added": "2022-02-14 07:33:55"
},
{
"id": 109,
"user_id": 1,
"hidden": "no",
"question": "In optics is a hole or an opening through which light travels. More specifically, the [blank] and focal length of an optical system determine the cone angle of a bundle of rays that come to a focus in the image plane. An optical system typically has many openings or structures that limit the ray bundles",
"ans1": "Bokeh",
"ans2": "Aperture",
"ans3": "IBIS",
"ans4": "Focal Length",
"correct": 2,
"category": "photography",
"date_added": "2022-02-13 22:56:53"
},
{
"id": 152,
"user_id": 2,
"hidden": "no",
"question": "Who portrayed George M. Cohan in the movie \"Yankee Doodle Dandy\"?",
"ans1": "Fred Astaire",
"ans2": "James Stewart",
"ans3": "Gene Kelly",
"ans4": "James Cagney",
"correct": 4,
"category": "movie",
"date_added": "2022-02-13 22:12:27"
},
{
"id": 151,
"user_id": 2,
"hidden": "no",
"question": "What actor portrayed Frodo Baggins in the \"Lord of the Rings\" trilogy? ",
"ans1": "Elijah Wood",
"ans2": "John Rhys-Davies",
"ans3": "Ian Mckellen",
"ans4": "Sean Astin",
"correct": 1,
"category": "movie",
"date_added": "2022-02-13 16:23:51"
},
{
"id": 150,
"user_id": 2,
"hidden": "no",
"question": "A talented pool hustler has stayed out of the game for years, must go back to his old ways when his little brother gets involved with his enemy, the very man who held him back from greatness. What is the name of this movie?",
"ans1": "The Color of Money",
"ans2": "Matchstick Men",
"ans3": "The Hustler",
"ans4": "Poolhall Junkies",
"correct": 4,
"category": "movie",
"date_added": "2022-02-13 14:03:28"
},
{
"id": 149,
"user_id": 2,
"hidden": "no",
"question": "What actor provided the voice for Darth Vader for the movie Star Wars(1977)?",
"ans1": "David Prowse",
"ans2": "James Earl Jones",
"ans3": "Sean Connery",
"ans4": "",
"correct": 2,
"category": "movie",
"date_added": "2022-02-13 14:01:08"
},
{
"id": 148,
"user_id": 2,
"hidden": "no",
"question": "A coach with a checkered past and a local drunk train a small town high school basketball team to become a top contender for the championship. What is the name of the movie?",
"ans1": "Heroes",
"ans2": "Friday Night Lights",
"ans3": "Blue Chips",
"ans4": "Hoosiers",
"correct": 4,
"category": "movie",
"date_added": "2022-02-13 13:59:33"
},
{
"id": 147,
"user_id": 2,
"hidden": "no",
"question": "What actor from the movie \"Dead Poets Society\" plays Dr. James Wilson on the TV show \"House\"?",
"ans1": "Ethan Hawke",
"ans2": "Tom Cruise",
"ans3": "Robert Sean Leonard",
"ans4": "James Waterston",
"correct": 3,
"category": "movie",
"date_added": "2022-02-13 13:57:08"
},
{
"id": 146,
"user_id": 2,
"hidden": "no",
"question": "Joel had all the normal teenage fantasies...cars, girls, money. Then his parents left for a week, and all his fantasies came true. What is the name of that movie?",
"ans1": "Top Gun",
"ans2": "Hoosiers",
"ans3": "Risky Business",
"ans4": "Caddyshack",
"correct": 3,
"category": "movie",
"date_added": "2022-02-10 22:56:09"
},
{
"id": 145,
"user_id": 2,
"hidden": "no",
"question": "Rand Peltzer is warned by the shop's owner that three rules must be obeyed by a Mogwai Owner: 1)Keep it away from bright light, 2) Don't get any water on it, 3) and never ever feed it after midnight. What is the name of the movie?",
"ans1": "Cujo",
"ans2": "Gremlins",
"ans3": "Short Circuit",
"ans4": "The Thing",
"correct": 2,
"category": "movie",
"date_added": "2022-02-10 22:53:41"
},
{
"id": 144,
"user_id": 2,
"hidden": "no",
"question": "What planet was demoted from planetary status and is now considered a dwarf planet?",
"ans1": "Neptune",
"ans2": "Pluto",
"ans3": "Uranus",
"ans4": "Dwarf",
"correct": 2,
"category": "space",
"date_added": "2022-02-10 21:08:55"
},
{
"id": 143,
"user_id": 2,
"hidden": "no",
"question": "What two planets are considered gas giants (composed mainly of hydrogen and helium)?",
"ans1": "Jupiter and Saturn",
"ans2": "Uranus and Neptune",
"ans3": "Mercury and Mars",
"ans4": "",
"correct": 1,
"category": "space",
"date_added": "2022-02-10 21:04:38"
},
{
"id": 142,
"user_id": 2,
"hidden": "no",
"question": "Who was the first American in space?",
"ans1": "Alan B. Shepard, Jr.",
"ans2": "John Glenn",
"ans3": "Yuri A. Gagarin",
"ans4": "Neil Alden Armstrong",
"correct": 1,
"category": "space",
"date_added": "2022-02-10 20:58:01"
},
{
"id": 141,
"user_id": 2,
"hidden": "no",
"question": "Who was the first person to walk on the moon?",
"ans1": "Neil Armstrong",
"ans2": "Buzz Aldrin",
"ans3": "Soupy Sales",
"ans4": "Alan Shepard",
"correct": 1,
"category": "space",
"date_added": "2022-02-10 13:22:20"
},
{
"id": 140,
"user_id": 2,
"hidden": "no",
"question": "Who was the first U.S. President to have his picture taken and the image still exists? ",
"ans1": "William Henry Harrison",
"ans2": "Teddy Roosevelt",
"ans3": "John Quincy Adams",
"ans4": "Abe Lincoln",
"correct": 3,
"category": "photography",
"date_added": "2021-12-18 16:24:13"
},
{
"id": 135,
"user_id": 2,
"hidden": "no",
"question": "In 1972 a South Vietnamese plane accidentally dropped napalm on its own troops and civilians. A nine-year-old Kim Phuc with her clothes ripped off by burning the clothes while she ran. Who was this photographer? ",
"ans1": "Eddie Adams",
"ans2": "Alfred Eisenstaedt",
"ans3": "Joe Rosenthal",
"ans4": "Nick Ut",
"correct": 4,
"category": "photography",
"date_added": "2021-12-17 21:21:41"
},
{
"id": 133,
"user_id": 2,
"hidden": "no",
"question": "What is the new flagship MirrorLess camera for Sony?",
"ans1": "Sony A9 II",
"ans2": "Sony A7R IV",
"ans3": "Sony A1",
"ans4": "",
"correct": 3,
"category": "photography",
"date_added": "2021-08-13 14:35:21"
},
{
"id": 110,
"user_id": 1,
"hidden": "no",
"question": "[Blank] is the length of time when the film or digital sensor inside the camera is exposed to light, also when a camera's shutter is open when taking a photograph. The amount of light that reaches the film or image sensor is proportional to the [Blank].",
"ans1": "Shutter Speed or Exposure Time",
"ans2": "ISO",
"ans3": "",
"ans4": "",
"correct": 1,
"category": "photography",
"date_added": "2021-03-09 10:39:46"
},
{
"id": 118,
"user_id": 1,
"hidden": "no",
"question": "The camera's ability to correct color cast or tint under different lighting conditions including daylight, indoor, fluorescent lighting, and electronic flash. Is known as? ",
"ans1": "Color Calibration",
"ans2": "White Balance",
"ans3": "",
"ans4": "",
"correct": 2,
"category": "photography",
"date_added": "2021-02-27 06:52:13"
},
{
"id": 115,
"user_id": 1,
"hidden": "no",
"question": "The [Blank] is a method of estimating correct daylight exposures without a light meter. ... As the rule is based on incident light, rather than reflected light as with most camera light meters, very bright or very dark subjects are compensated for.",
"ans1": "Sunny 8 Rule",
"ans2": "Sunny 16 Rule",
"ans3": "Cloudy 11 Rule",
"ans4": "Rule of 3rds",
"correct": 2,
"category": "photography",
"date_added": "2021-02-27 06:49:54"
},
{
"id": 111,
"user_id": 1,
"hidden": "no",
"question": "In Digital Photography [blank] measures the sensitivity of the image sensor. The same principles apply as in film photography \u2013 the lower the number the less sensitive your camera is to light and the finer the grain.",
"ans1": "IBIS",
"ans2": "Shutter Speed or Exposure Time",
"ans3": "ISO",
"ans4": "",
"correct": 3,
"category": "photography",
"date_added": "2021-02-26 20:51:57"
},
{
"id": 132,
"user_id": 1,
"hidden": "no",
"question": "The Sony A9\/A9II is great for taking what kinds of pictures?",
"ans1": "Action",
"ans2": "Portraits",
"ans3": "Landscapes",
"ans4": "",
"correct": 1,
"category": "photography",
"date_added": "2020-09-29 13:41:01"
},
{
"id": 131,
"user_id": 1,
"hidden": "no",
"question": "Neil Leifer photograph a famous boxer knocking out another famous boxer in 1965? ",
"ans1": "Muhammad Ali vs. George Foreman",
"ans2": "Muhammad Ali vs. Sonny Liston",
"ans3": "Muhammad Ali vs. Joe Frazier",
"ans4": "George Foreman -vs- Leon Spinks",
"correct": 2,
"category": "photography",
"date_added": "2020-09-27 13:13:46"
},
{
"id": 112,
"user_id": 1,
"hidden": "no",
"question": "The [blank], which is also known as the [blank], is the ratio of the lens focal length to the diameter of the entrance pupil. In simple terms, [blank] is the number that your camera shows you when you change the size of the lens aperture.",
"ans1": "ISO or Shutter Speed",
"ans2": "Aperture or ISO",
"ans3": "Shutter Speed or Aperture",
"ans4": "f-stop or f-number",
"correct": 4,
"category": "photography",
"date_added": "2020-09-27 13:05:27"
},
{
"id": 113,
"user_id": 1,
"hidden": "no",
"question": "[blank] was a landscape photographer and environmentalist known for his black-and-white images of the American West. He helped found Group f\/64, an association of photographers advocating \"pure\" photography which favored sharp focus and the use of the full tonal range of a photograph. ",
"ans1": "Robert Capa",
"ans2": "Ansel Adams",
"ans3": "Steve McCurry",
"ans4": "David Bailey",
"correct": 2,
"category": "photography",
"date_added": "2020-09-27 13:05:27"
},
{
"id": 114,
"user_id": 1,
"hidden": "no",
"question": "[Blank] was one of the earliest photographers in American history, best known for his scenes of the Civil War. He studied under inventor Samuel F. B. Morse, who pioneered the daguerreotype technique in America. [Blank] opened his own studio in New York in 1844, and photographed Andrew Jackson, John Quincy Adams, and Abraham Lincoln, among other public figures.",
"ans1": "Robert Capa",
"ans2": "Steve McCurry",
"ans3": "Ansel Adams",
"ans4": "Matthew Brady",
"correct": 4,
"category": "photography",
"date_added": "2020-09-27 13:05:27"
},
{
"id": 116,
"user_id": 1,
"hidden": "no",
"question": "An English transliteration of a Japanese word that means \"haze\" or \"blur.\" [Blank] refers to the out-of-focus areas in a photograph with limited depth of field, particularly around, but not limited to, the highlight areas. [Blank] appears as little circles in the unsharp areas. Depending upon the shape of the opening formed by the blades of the lens's aperture, the circles appear either more or less circular.",
"ans1": "Bracketing",
"ans2": "Chromatic Aberration",
"ans3": "Color Depth",
"ans4": "Bokeh",
"correct": 4,
"category": "photography",
"date_added": "2020-09-27 13:05:27"
},
{
"id": 117,
"user_id": 1,
"hidden": "no",
"question": "A [Blank] camera is one that utilizes a mirror system to reflect the light (or latent image) coming through the lens to a visible screen. The image seen in the camera's viewfinder is identical to what strikes the camera's imaging sensor (or film plane). This system provides the most accurate way to frame and focus. The [Blank] system avoids the parallax problem that plagues most direct view cameras.",
"ans1": "shutter",
"ans2": "reflex",
"ans3": "flux",
"ans4": "flash",
"correct": 2,
"category": "photography",
"date_added": "2020-09-27 13:05:27"
},
{
"id": 119,
"user_id": 1,
"hidden": "no",
"question": "[Blank] is an American portrait photographer. She is best known for her engaging portraits\u2014particularly of celebrities\u2014which often feature subjects in intimate settings and poses. ",
"ans1": "Cindy Sherman",
"ans2": "Ruth Bernhard",
"ans3": "Annie Leibovitz",
"ans4": "Graciela Iturbide",
"correct": 3,
"category": "photography",
"date_added": "2020-09-27 13:05:27"
},
{
"id": 120,
"user_id": 1,
"hidden": "no",
"question": "An [Blank] digitally replicates the field of view of the area captured by the camera lens. While once considered a poor replacement for optical viewfinders, newer [Blank]s containing a million-plus pixels and faster refresh times have become quite accurate, in many cases approaching the clarity levels of optical finders. An advantage of [Blank]s is their ability to display exposure data and grids on demand.",
"ans1": "Electronic Viewfinder (EVF)",
"ans2": "Rangefinder and Reflex Viewfinders (RRVF)",
"ans3": "Spot Metering",
"ans4": "RGB Color Space",
"correct": 1,
"category": "photography",
"date_added": "2020-09-27 13:05:27"
},
{
"id": 121,
"user_id": 1,
"hidden": "no",
"question": "Adding to or subtracting from the \"correct\" exposure time indicated by the camera's light meter, which results in a final exposure that is either lighter or darker than the recommended [Blank] time. Most cameras allow for [Blank] in 1\/2, 1\/3, or full-stop increments. Note that the \"correct\" exposure is not necessarily the \"best\" exposure.",
"ans1": "ISO",
"ans2": "Focal Length",
"ans3": "Exposure Compensation",
"ans4": "Shutter Speed",
"correct": 3,
"category": "photography",
"date_added": "2020-09-27 13:05:27"
},
{
"id": 122,
"user_id": 1,
"hidden": "no",
"question": "Literally, the measure of how much of the background and foreground area before and beyond your subject is in focus.",
"ans1": "ISO",
"ans2": "Aperture",
"ans3": "f-stop or f-number",
"ans4": "Depth of Field",
"correct": 4,
"category": "photography",
"date_added": "2020-09-27 13:05:27"
},
{
"id": 123,
"user_id": 1,
"hidden": "no",
"question": "Who took the famous picture of six United States Marines raising the U.S. flag atop Mount Suribachi during the Battle of Iwo Jima in the final stages of the Pacific War? ",
"ans1": "Steve McCurry",
"ans2": "Joseph John Rosenthal",
"ans3": "Robert Cappa",
"ans4": "",
"correct": 2,
"category": "photography",
"date_added": "2020-09-27 13:05:27"
},
{
"id": 124,
"user_id": 1,
"hidden": "no",
"question": "What two former U.S. Presidents was Pete Souza the official White House photographer for? ",
"ans1": "Carter and Obama",
"ans2": "Reagan and Obama",
"ans3": "Clinton and Obama",
"ans4": "Bush and Clinton",
"correct": 2,
"category": "photography",
"date_added": "2020-09-27 13:05:27"
},
{
"id": 125,
"user_id": 1,
"hidden": "no",
"question": "In general, strictly based on how the image will look after you \"fix\" it, it is better to overexpose a photo than underexpose it?\n\n",
"ans1": "True",
"ans2": "False",
"ans3": "",
"ans4": "",
"correct": 1,
"category": "photography",
"date_added": "2020-09-27 13:05:27"
},
{
"id": 126,
"user_id": 1,
"hidden": "no",
"question": "What YouTube Photographer\/Personality says the \"L-Mount Alliance\" funny in his videos? ",
"ans1": "Matt Granger",
"ans2": "Jared Polin",
"ans3": "David Oastler",
"ans4": "Dave McKeegan",
"correct": 2,
"category": "photography",
"date_added": "2020-09-27 13:05:27"
},
{
"id": 127,
"user_id": 1,
"hidden": "no",
"question": "Who was the famous photographer that took the picture of the sailor kissing a dental nurse celebrating V-J Day? ",
"ans1": "Robert Capa",
"ans2": "Alfred Eisenstaedt",
"ans3": "Charles Kerlee",
"ans4": "Joe Rosenthal",
"correct": 2,
"category": "photography",
"date_added": "2020-09-27 13:05:27"
},
{
"id": 128,
"user_id": 1,
"hidden": "no",
"question": "What is the best photography camera in 2020 from Sony in taking action still shots for professional photographers?",
"ans1": "Sony A9II",
"ans2": "Sony A7III",
"ans3": "Sony A7RIV",
"ans4": "Sony 6600",
"correct": 1,
"category": "photography",
"date_added": "2020-09-27 13:05:27"
},
{
"id": 129,
"user_id": 1,
"hidden": "no",
"question": "You want to take picture of an object that is far away and get the best close up shot that you can. What native Sony lens would be the very best for taking that type of shot? ",
"ans1": "Sony FE 135mm f\/1.8 GM Lens",
"ans2": "Sony FE 85mm F1.8 E-Mount Lens",
"ans3": "Sony FE 24-240mm F3.5-6.3 OSS E-Mount Camera Lens",
"ans4": "Sony FE 600mm f\/4 GM OSS E-Mount Lens",
"correct": 4,
"category": "photography",