-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknowledge_base.json
More file actions
2768 lines (2768 loc) · 74.7 KB
/
Copy pathknowledge_base.json
File metadata and controls
2768 lines (2768 loc) · 74.7 KB
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
{
"questions": [
{
"question": "hello",
"answer": "Hello"
},
{
"question": "How are you?",
"answer": "I'm good"
},
{
"question": "Can we talk?",
"answer": "Sure"
},
{
"question": "How are you?",
"answer": "I'm doing well, thank you. How about you?"
},
{
"question": "What is your favorite color?",
"answer": "I'd choose black."
},
{
"question": "hey jace",
"answer": "Hello"
},
{
"question": "hey sir",
"answer": "I'm a madam"
},
{
"question": "how you think i am doing today?",
"answer": "Always the best mood perhaps"
},
{
"question": "How many hours are there in a day?",
"answer": "24"
},
{
"question": "How many days are there in a week?",
"answer": "7"
},
{
"question": "Which animal is known as the 'Ship of the Desert?",
"answer": "Camel"
},
{
"question": "How many letters are there in the English alphabet?",
"answer": "26"
},
{
"question": "Rainbow consist of how many colours?",
"answer": "7"
},
{
"question": "How many days are there in a year?",
"answer": "365 days (not a leap year)"
},
{
"question": "How many letters are there in the English alphabet?",
"answer": "26"
},
{
"question": "Rainbow consist of how many colours?",
"answer": "7"
},
{
"question": "How many days are there in a year?",
"answer": "365 days (not a leap year)"
},
{
"question": "How many minutes are there in an hour?",
"answer": "60 minutes"
},
{
"question": "How many seconds are there in a minute?",
"answer": "60 seconds"
},
{
"question": "How many seconds make one hour?",
"answer": "3600 seconds"
},
{
"question": "Baby frog is known as.......",
"answer": "Tadpole"
},
{
"question": "How many consonants are there in the English alphabet?",
"answer": "21 consonants"
},
{
"question": "How many vowels are there in the English alphabet and name them?",
"answer": "5 vowels namely a, e, i, o, and u."
},
{
"question": "Which animal is known as the king of the jungle?",
"answer": "The Lion is known as the king of the jungle."
},
{
"question": "Name the National bird of India?",
"answer": "The Peacock"
},
{
"question": "Name the National animal of India?",
"answer": "Tiger"
},
{
"question": "What is the National Anthem of India?",
"answer": "The National Anthem of India is Jana Gana Mana."
},
{
"question": "Name the national flower of India?",
"answer": "Lotus flower"
},
{
"question": "Name the National fruit of India?",
"answer": "Mango"
},
{
"question": "What is the National song of India?",
"answer": "Vande Mataram"
},
{
"question": "Who designed the National Flag of India?",
"answer": "The flag was designed by Pingali Venkayya."
},
{
"question": "Name the National game of India?",
"answer": "India does not have an official National Game."
},
{
"question": "Name the National tree of India?",
"answer": "Banyan tree"
},
{
"question": "Name the National river of India?",
"answer": "Ganga"
},
{
"question": "Name the National Reptile of India?",
"answer": "King Cobra"
},
{
"question": "What is the capital of India?",
"answer": "New Delhi"
},
{
"question": "Name the biggest continent in the world?",
"answer": "Asia"
},
{
"question": "How many continents are there in the world?",
"answer": "7 continents"
},
{
"question": "Name the primary colours?",
"answer": "Red, Yellow, and Blue"
},
{
"question": "Which is the smallest month of the year?",
"answer": "February"
},
{
"question": "Name the house made of ice?",
"answer": "Igloo"
},
{
"question": "Which colour symbolises peace?",
"answer": "White"
},
{
"question": "Name the largest mammal?",
"answer": "Blue Whale"
},
{
"question": "Sun rises in the.....",
"answer": "East"
},
{
"question": "How many sides are there in a triangle?",
"answer": "Three"
},
{
"question": "Name the largest planet of our Solar System?",
"answer": "Jupiter"
},
{
"question": "Name the place known as the Roof of the World?",
"answer": "Tibet"
},
{
"question": "Who was the first Prime Minister of India?",
"answer": "Pandit Jawaharlal Nehru"
},
{
"question": "Who is the first woman prime minister of India?",
"answer": "Indira Gandhi"
},
{
"question": "Who is the first citizen of India?",
"answer": "The President of India"
},
{
"question": "How many states are there in India?",
"answer": "28 states"
},
{
"question": "How many Union Territories are there in India?",
"answer": "8 Union Territories"
},
{
"question": "How many years are there in one Millenium?",
"answer": "1,000 years"
},
{
"question": "Name the first man to walk on the Moon?",
"answer": "Neil Armstrong"
},
{
"question": "Name the Oceans of the World?",
"answer": "The Atlantic, Pacific, Indian, Arctic, and the Southern (Antarctic) oceans."
},
{
"question": "Name the densest jungle in the world?",
"answer": "The Amazon rainforest"
},
{
"question": "Which festival is called the festival of colours?",
"answer": "Holi"
},
{
"question": "What is the Isosceles triangle?",
"answer": "A triangle in which two sides have the same length or two sides are equal."
},
{
"question": "What type of gas is absorbed by plants?",
"answer": "Carbon Dioxide"
},
{
"question": "How many days a February month have in the leap year?",
"answer": "29 days"
},
{
"question": "Name the longest river on the Earth?",
"answer": "Nile"
},
{
"question": "Name the smallest continent?",
"answer": "Australia"
},
{
"question": "Which is the principal source of energy for the Earth?",
"answer": "Sun"
},
{
"question": "Anti-clockwise is it from left or right?",
"answer": "Left"
},
{
"question": "Name the planet nearest to the Earth?",
"answer": "Mercury"
},
{
"question": "Which festival is known as the festival of light?",
"answer": "Diwali"
},
{
"question": "Name a bird that lays the largest eggs?",
"answer": "Ostrich"
},
{
"question": "Which is the National Aquatic Animal of India?",
"answer": "River Dolphin"
},
{
"question": "Name the National Heritage Animal of India?",
"answer": "Elephant"
},
{
"question": "Which is the tallest mountain in the world?",
"answer": "Mount Everest"
},
{
"question": "Who invented Radio?",
"answer": "Guglielmo Marconi is known as the father of radio."
},
{
"question": "Who invented electricity?",
"answer": "Benjamin Franklin"
},
{
"question": "Which continent is known as the \u00e2\u20ac\u02dcDark\u00e2\u20ac\u2122 continent?",
"answer": "Africa"
},
{
"question": "Name the planet known as the Red Planet?",
"answer": "Mars"
},
{
"question": "Who wrote 'Malgudi Days'?",
"answer": "R. K. Narayan"
},
{
"question": "Name the National game of the USA?",
"answer": "Baseball"
},
{
"question": "Who invented Watch?",
"answer": "Peter Henlein"
},
{
"question": "Name the largest 'Democracy' of the world?",
"answer": "India"
},
{
"question": "Which is the smallest bone in the human body?",
"answer": "Stapes (Ear bone)"
},
{
"question": "Name the country known as the Land of the Rising Sun?",
"answer": "Japan"
},
{
"question": "How many millimetres are there in a centimetre?",
"answer": "10mm"
},
{
"question": "Name the hardest substance available on Earth?",
"answer": "Diamond"
},
{
"question": "Name a shape that has ten sides?",
"answer": "Decagon"
},
{
"question": "Name the largest ocean in the World?",
"answer": "Pacific Ocean"
},
{
"question": "Who is the real founder of Microsoft?",
"answer": "Bill Gates and Paul G. Allen"
},
{
"question": "Who gave the theory of Relativity?",
"answer": "Albert Einstein"
},
{
"question": "Who is the Father of our Nation?",
"answer": "Mahatma Gandhi"
},
{
"question": "Who discovered the X-rays first?",
"answer": "Wilhelm Roentgen"
},
{
"question": "Who gave the universal law of gravitation?",
"answer": "Issac Newton"
},
{
"question": "What is a telescope?",
"answer": "A telescope is an instrument in the shape of a tube with special pieces of glass (lenses) inside it. It makes things that far away appear bigger and nearer."
},
{
"question": "Name a natural satellite of Earth?",
"answer": "Moon"
},
{
"question": "What are Commonwealth Games?",
"answer": "The Commonwealth Games are a quadrennial international multi-sport event among the athletes of the Commonwealth Games."
},
{
"question": "How many years of Independence India celebrated on August 15, 2022?",
"answer": "India celebrated 75 years of Independence on August 15, 2022."
},
{
"question": "How many medals India won in the Commonwealth Games 2022?",
"answer": "India won total 61 medals in Commonwealth Games 2022."
},
{
"question": "34 teeth in total adults have.",
"answer": "False (The adult has 32 teeth in total)."
},
{
"question": "Barometer used to measure Atmospheric Pressure.",
"answer": "True"
},
{
"question": "Valentina Tereshkova was the first woman to go into space.",
"answer": "True"
},
{
"question": "Sparrow is a bird known for its intelligence.",
"answer": "False (Owl is known for its intelligence)."
},
{
"question": "Europe is the second smallest continent and the third most populous continent",
"answer": "True"
},
{
"question": "Bosnia and Herzegovina's largest city and capital is Sarajevo.",
"answer": "True"
},
{
"question": "Plants absorbs Oxygen?",
"answer": "False (Plants absorbs Carbon Dioxide)."
},
{
"question": "Denmark's capital and most populous city is Copenhagen",
"answer": "True"
},
{
"question": "Half of 250 is 125.",
"answer": "True"
},
{
"question": "Metre per second is the unit of Speed.",
"answer": "True"
},
{
"question": "William Shakespeare is a scientist.",
"answer": "False (William Shakespeare was an English dramatist, poet, and actor)."
},
{
"question": "There are 200 bones in the Human Body.",
"answer": "False (206 bones are there in Human Body)."
},
{
"question": "Electrons are larger than molecules.",
"answer": "False"
},
{
"question": "With the help of Photosynthesis plants make their own food.",
"answer": "True"
},
{
"question": "Chemical formulae of Hydrochloric acid is HCl.",
"answer": "True"
},
{
"question": "when is my birthday?",
"answer": "25th August 2006"
},
{
"question": "A flashing red traffic light signifies that a driver should do what?",
"answer": "stop"
},
{
"question": "A knish is traditionally stuffed with what filling?",
"answer": "potato"
},
{
"question": "A pita is a type of what?",
"answer": "flat bread"
},
{
"question": "A portrait that comically exaggerates a person's physical traits is called a what?",
"answer": "caricature"
},
{
"question": "A second-year college student is usually called a what?",
"A": "sophomore",
"B": "senior",
"C": "freshman ",
"D": "junior ",
"answer": "A"
},
{
"question": "A student who earns a J.D. can begin his or her career as a what?",
"A": "lawyer",
"B": "bricklayer",
"C": "doctor",
"D": "accountant",
"answer": "A"
},
{
"question": "A triptych is a work of art that is painted on how many panels?",
"A": "two",
"B": "three",
"C": "five",
"D": "eight",
"answer": "B"
},
{
"question": "According to a famous line from the existentialist play 'No Exit' what is hell?",
"A": "oneself",
"B": "other people",
"C": "little made large",
"D": "hued in green and blue",
"answer": "B"
},
{
"question": "According to a popular slogan, what state should people not 'mess with'?",
"A": "New York",
"B": "Texas",
"C": "Montana",
"D": "Rhode Island",
"answer": "B"
},
{
"question": "According to a Yale University study, what smell is the most recognizable to American adults?",
"A": "tuna",
"B": "laundry",
"C": "popcorn",
"D": "coffee",
"answer": "D"
},
{
"question": "According to folklore, the 'jackalope' is an antlered version of what animal?",
"A": "chicken",
"B": "rabbit",
"C": "moose",
"D": "snake",
"answer": "B"
},
{
"question": "According to Greek mythology, who was Apollo's twin sister?",
"A": "Aphrodite",
"B": "Artemis",
"C": "Venus",
"D": "Athena",
"answer": "B"
},
{
"question": "According to legend, if you give someone the 'evil eye' what are you doing?",
"A": "cursing them",
"B": "blessing a child",
"C": "counting money",
"D": "passing time",
"answer": "A"
},
{
"question": "According to legend, in what country are you most likely to meet a leprechaun?",
"A": "Ireland",
"B": "Poland",
"C": "Greenland",
"D": "Scotland",
"answer": "A"
},
{
"question": "According to the American Kennel Club, what is the most popular breed of dog in the US as of 1999?",
"A": "Poodle",
"B": "Beagle",
"C": "German shepherd",
"D": "Labrador retriever",
"answer": "D"
},
{
"question": "According to the Bible, Moses and Aaron had a sister named what?",
"A": "Jochebed",
"B": "Ruth",
"C": "Leah",
"D": "Miriam",
"answer": "D"
},
{
"question": "According to the children's nursery rhyme, what type of ocean did Columbus sail in 1492?",
"A": "calm",
"B": "blue",
"C": "windy",
"D": "really big",
"answer": "B"
},
{
"question": "According to the Mother Goose nursery rhyme, which child is full of woe?",
"A": "Monday's child",
"B": "Wednesday's child",
"C": "Thursday's child",
"D": "Saturday's child",
"answer": "B"
},
{
"question": "According to the popular saying, what should you do 'when in Rome'?",
"A": "watch your wallet",
"B": "see the Coliseum",
"C": "as the Romans do",
"D": "don't drink the water",
"answer": "C"
},
{
"question": "According to the proverb, necessity is the mother of what?",
"A": "Invention",
"B": "Luck",
"C": "Problems",
"D": "Procrastination",
"answer": "A"
},
{
"question": "According to the title of a popular children's TV show, what color is Bear's big house?",
"A": "red",
"B": "green",
"C": "purple",
"D": "blue",
"answer": "D"
},
{
"question": "According to the USDA, which food group should you eat the most servings of per day?",
"A": "vegetables",
"B": "dairy",
"C": "meats",
"D": "breads",
"answer": "D"
},
{
"question": "Ada Lovelace is credited with being the first person to have made what?",
"A": "a computer program",
"B": "a souffle",
"C": "a brassiere",
"D": "a mystery novel",
"answer": "A"
},
{
"question": "After Prince Charles, who is next in line to be the king of England?",
"A": "Prince William",
"B": "Prince Andrew",
"C": "Prince Edward",
"D": "Fresh Prince",
"answer": "A"
},
{
"question": "An airplane's black box is usually what color?",
"A": "black",
"B": "white",
"C": "orange",
"D": "purple",
"answer": "C"
},
{
"question": "As of 1999, which state has the most Girl Scouts?",
"A": "California",
"B": "Illinois",
"C": "New York",
"D": "Pennsylvania",
"answer": "A"
},
{
"question": "Astronaut John Glenn served as a pilot in what branch of the military?",
"A": "Army",
"B": "Air Force",
"C": "Marines",
"D": "Navy",
"answer": "C"
},
{
"question": "At the equator, how fast is the earth's surface turning?",
"A": "about 100 miles per hour",
"B": "about 500 miles per hour",
"C": "about 1000 miles per hour",
"D": "about 2000 miles per hour",
"answer": "C"
},
{
"question": "At what age can someone first attend an R-rated movie without an accompanying adult?",
"A": "15",
"B": "17",
"C": "18",
"D": "21",
"answer": "C"
},
{
"question": "Backgammon is a how many player game?",
"A": "Two",
"B": "Three",
"C": "Four",
"D": "Six",
"answer": "A"
},
{
"question": "Before he went into coaching, Phil Jackson played for which of the following NBA teams?",
"A": "Boston Celtics",
"B": "Los Angeles Lakers",
"C": "New York Knicks",
"D": "Philadelphia 76ers",
"answer": "C"
},
{
"question": "By what name is Bob Keeshan better known?",
"A": "Bozo the Clown",
"B": "Pee Wee Herman",
"C": "Captain Kangaroo",
"D": "Buffalo Bob",
"answer": "C"
},
{
"question": "By what collective name do Christians refer to God the Father, God the Son and the Holy Ghost?",
"A": "the Trio",
"B": "the Troika",
"C": "the Triumvirate",
"D": "the Trinity",
"answer": "D"
},
{
"question": "By what nickname is the Federal National Mortgage Association known?",
"A": "Morty",
"B": "FEMA",
"C": "Freddie Mac",
"D": "Fannie Mae",
"answer": "D"
},
{
"question": "Cheddar cheese got its name from a village in what country?",
"A": "England",
"B": "France",
"C": "Switzerland",
"D": "Denmark",
"answer": "A"
},
{
"question": "Cheese is a necessary ingredient in which of these dishes?",
"A": "sushi",
"B": "french fries",
"C": "veal parmigiano",
"D": "chicken pot pie",
"answer": "C"
},
{
"question": "During what war did Francis Scott Key write the words to 'The Star-Spangled Banner'?",
"A": "American Revolution",
"B": "War of 1812",
"C": "Civil War",
"D": "World War I",
"answer": "B"
},
{
"question": "During which war did US troops fight the Battle of New Orleans?",
"A": "American Revolution",
"B": "Civil War",
"C": "Mexican War",
"D": "War of 1812",
"answer": "D"
},
{
"question": "Each year in pro baseball, the player voted as the best fielder at his position wins what?",
"A": "a brand new car",
"B": "the Gold Glove",
"C": "the Silver Bat",
"D": "the Brass Baseball",
"answer": "B"
},
{
"question": "Elephant tusks are made of what material?",
"A": "coral",
"B": "ivory",
"C": "bone",
"D": "calcium",
"answer": "B"
},
{
"question": "Excluding wisdom teeth, how many adult teeth do humans have?",
"A": "28",
"B": "32",
"C": "35",
"D": "40",
"answer": "A"
},
{
"question": "For a man and woman on a date, 'dutch treat' means what?",
"A": "the man pays",
"B": "the woman pays",
"C": "the Dutch pay",
"D": "each pays their own way",
"answer": "D"
},
{
"question": "For what purpose would you use an awl?",
"A": "to shoot ducks",
"B": "to polish floors",
"C": "to make holes",
"D": "to weigh fruit",
"answer": "C"
},
{
"question": "From 1971 to 1997, the Democratic Republic of Congo was known as what?",
"A": "Zaire",
"B": "Angola",
"C": "Rhodesia",
"D": "Belgian Congo",
"answer": "A"
},
{
"question": "From what language does the term 'R.S.V.P.' originate?",
"A": "Russian",
"B": "Italian",
"C": "Portuguese",
"D": "French",
"answer": "D"
},
{
"question": "From whom does the Lutheran Church get its name?",
"A": "Martin Luther King Jr",
"B": "Martin Luther",
"C": "Luther Vandross",
"D": "Lex Luthor",
"answer": "B"
},
{
"question": "Gerry Adams is the president of what organization?",
"A": "Greenpeace",
"B": "NASCAR",
"C": "Sinn Fein",
"D": "PLO",
"answer": "C"
},
{
"question": "Girls of what religious community traditionally wear bonnets?",
"A": "Amish",
"B": "Sikh",
"C": "Roman Catholic",
"D": "Christian",
"answer": "A"
},
{
"question": "How are actors Charlie Sheen and Emilio Estevez related?",
"A": "they're cousins",
"B": "they're brothers",
"C": "they're father and son",
"D": "they're uncle and nephew",
"answer": "B"
},
{
"question": "How do you express 3/4 as a decimal?",
"A": ".25",
"B": ".50",
"C": ".75",
"D": ".90",
"answer": "C"
},
{
"question": "How is 4:00 pm expressed in military time?",
"A": "1600",
"B": "004",
"C": "0400 ",
"D": "4:00",
"answer": "A"
},
{
"question": "How is the Arabic numeral for '2' written?",
"A": "2",
"B": "II",
"C": "I",
"D": "ii",
"answer": "A"
},
{
"question": "How is the word 'ambulance' normally written on the front of American ambulances?",
"A": "in French",
"B": "in reverse",
"C": "in braille",
"D": "in gibberish",
"answer": "B"
},
{
"question": "How long is a single term in the US Senate?",
"A": "two years",
"B": "four years",
"C": "six years",
"D": "eight years",
"answer": "C"
},
{
"question": "How long is the time on an NBA shot clock?",
"A": "18 seconds",
"B": "24 seconds",
"C": "30 seconds",
"D": "35 seconds",
"answer": "B"
},
{
"question": "How many $100 bills does it take to equal one million dollars?",
"A": "one thousand",
"B": "five thousand",
"C": "ten thousand",
"D": "one hundred thousand",
"answer": "C"
},
{
"question": "How many axles does a standard automobile have?",
"A": "one",
"B": "two",
"C": "four",
"D": "eight",
"answer": "B"
},
{
"question": "How many digits are in a standard Visa credit card number?",
"A": "12",
"B": "15",
"C": "16",
"D": "20",
"answer": "C"
},
{
"question": "How many eyes does a Giraffe have?",
"A": "one",
"B": "two",
"C": "three",
"D": "four",
"answer": "B"
},
{
"question": "How many innings are there in a regular Major League Baseball game?",
"A": "seven",
"B": "eight",
"C": "nine",
"D": "ten",
"answer": "C"
},
{
"question": "How many keys are on a standard piano?",
"A": "20",
"B": "54",
"C": "88",
"D": "100",
"answer": "C"
},
{
"question": "How many men has actress Elizabeth Taylor been divorced from?",
"A": "five",
"B": "six",
"C": "seven",
"D": "eight",
"answer": "C"
},
{
"question": "How many ounces are in a pound?",
"A": "4",
"B": "12",
"C": "16",
"D": "32",
"answer": "C"
},
{
"question": "How many periods are there in an ice hockey game?",
"A": "One",
"B": "Two",
"C": "Three",
"D": "Four",
"answer": "C"
},
{
"question": "How many quarts are there in a gallon?",
"A": "one",
"B": "two",
"C": "three",
"D": "four",
"answer": "D"
},
{
"question": "How many ribs are there in the human body?",
"A": "18",
"B": "24",
"C": "30",
"D": "42",
"answer": "B"
},
{
"question": "How many ships did Columbus set sail with on his initial voyage to the New World?",
"A": "Two",
"B": "Three",
"C": "Five",
"D": "Ten",
"answer": "B"
},
{
"question": "How many spikes are on the Statue of Liberty's crown?",
"A": "five",
"B": "seven",
"C": "nine",
"D": "thirteen",
"answer": "B"
},
{
"question": "How many stars are on the American flag?",
"A": "13",
"B": "48",
"C": "50",
"D": "51",
"answer": "C"
},
{
"question": "How many states were in the Confederate States of America?",
"A": "11",
"B": "13",
"C": "16",
"D": "22",
"answer": "A"
},
{
"question": "How much does Peanuts character Lucy charge for her psychiatric advice?",
"A": "5 cents",
"B": "10 cents",
"C": "75 cents",
"D": "$125",
"answer": "A"
},
{
"question": "How long is Hanukkah?",
"A": "one day",
"B": "five days",
"C": "eight days",
"D": "two weeks",