-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
2814 lines (2799 loc) · 103 KB
/
index.js
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
var myQuestions = [
{
question: "In grams, what is General Sherman’s mass (do not take branches into account)?",
answer: 9
},
{
question: "How much voltage, in volts, is measured in the resting potential of a neuron?",
answer: -1
},
{
question: "How long, in days, does it take a monster truck to fall 100 meters?",
answer: -5
},
{
question: "Kevin Tu, a 2016-2017 state officer, visits Antonio, Allen, Wendy, and Alicia! Kevin is equipped with muscles and a six(teen) pack, for those of you who don’t know him. Kevin sees that Antonio is holding an aluminum rod that has a radius of 0.5 inches, and Kevin claims he can break the rod by pulling it from two directions. How many Newtons of force does this require?",
answer: 5
},
{
question: "How much money is spent on elementary and secondary school students in the US?",
answer: 11
},
{
question: "9^8",
answer: 7
},
{
question: "How many feet can an Olympic sprinter run (assuming he never gets tired) for the time a satellite signal can get to the Sun and back? (feet)",
answer: 4
},
{
question: "How many actual CRISPR Cas9 proteins could fit inside a 61x61x61 cm cube, assuming the proteins were 8x8x8 nm cubes?",
answer: 23
},
{
question: "How many connections does each neuron in the human brain have to other neurons?",
answer: 4
},
{
question: "Approximately how many carbon atoms are in this page of paper?",
answer: 23
},
{
question: "How many pennies would it take to pay for 100 full size Costco food court pizzas?",
answer: 3
},
{
question: "What would be the world’s population if all land above sea level was inhabited at the population density of Hong Kong?",
answer: 12
},
{
question: "If you gave every person in Pittsburgh $2018, how many ounces of milk could they collectively buy?",
answer: 10
},
{
question: "How many cans of pop would you need to fill the Michigan football stadium?",
answer: 10
},
{
question: "How many licks to the center of a Tootsie pop?",
answer: 2
},
{
question: "How many bankruptcies were filed in the United States since the crash of 2008?",
answer: 7
},
{
question: "If you stood still outside in the city of Chicago, trying to catch snowflakes on your tongue during an average snowstorm for 1 hour, what fraction of the snowflakes that fall on the city would end up on your tongue?",
answer: -12
},
{
question: "How many cubic meters of ink were used to print one copy of this test?",
answer: -7
},
{
question: "How many trees are in Russia?",
answer: 12
},
{
question: "How many times has the Earth orbited the Sun since its birth?",
answer: 9
},
{
question: "How many Joules of solar energy reach the grass on the surface of Wrigley Field in July during a Chicago Cubs baseball game?",
answer: 11
},
{
question: "In millimeters, what is the distance across the Milky Way Galaxy?",
answer: 24
},
{
question: "The radius of a gold atom in units of astronomical units.",
answer: -21
},
{
question: "How many characters (including spaces) are in this entire test?",
answer: 4
},
{
question: "How many licks to the center of a tootsie pop?",
answer: 8
},
{
question: "How many millenia does it take to drive from Centreville, VA to Blacksburg, VA",
answer: -7
},
{
question: "What is the density g/cm^3 of solid osmium?",
answer: 1
},
{
question: "How many total users does Facebook have?",
answer: 9
},
{
question: "How many snapchat pictures are sent in 24 hours in America?",
answer: 9
},
{
question: "How many artificial satellites are currently orbiting around Earth? (2019)",
answer: 3
},
{
question: "Unfortunately, now you have a cold too. You sneeze really hard! What’s the ratio of the maximum distance that a sneeze can travel to the distance from Austin, TX to Anchorage, AK?",
answer: -5
},
{
question: "How many meters can be drawn with a typical #2 pencil?",
answer: 5
},
{
question: "How many sugar cubes would you need to stack to build a tetrahedron 100’ high?",
answer: 10
},
{
question: "How many grams of trace amounts of gold are naturally found in an average human’s body?",
answer: -4
},
{
question: "What is e to the power of 56?",
answer: 24
},
{
question: "How many students were awarded bachelor-level engineering degrees last year in the United States?",
answer: 5
},
{
question: "How long, in seconds, does it take light to travel from North to South across Kansas?",
answer: -3
},
{
question: "How many ants are in the world?",
answer: 16
},
{
question: "What is the pressure, in atmospheres, at the bottom of the Mariana Trench?",
answer: 3
},
{
question: "What fraction of the photons in the observable universe are emitted by a 1 W light bulb in a minute?",
answer: -69
},
{
question: "How many gluons are in Earth?",
answer: 52
},
{
question: "You’re finally on the way back to the hotel to chill for a bit before the awards ceremony and dinner. Assuming all competitors and coaches are staying in hotel rooms, what percent of US hotel rooms are MIT Invitational competitors and coaches occupying?",
answer: -2
},
{
question: "In all the DNA in one human cell is unwinded and stretched out, how long is it in kilometers?",
answer: -3
},
{
question: "Most organic molecules are insulators. What is the conductivity of polytetrafluoroethylene, a polymer with the repeating unit -CF2CF2 -, in S/cm?",
answer: -18
},
{
question: "How many dinosaur fossils have ever been unearthed and catalogued?",
answer: 4
},
{
question: "How many blades of grass are there on a standard sized football field?",
answer: 8
},
{
question: "How many different countries have a Burger King?",
answer: 2
},
{
question: "How long, in days, does it take a needle to fall from the top of a Giant Redwood tree, if there were no branches below it?",
answer: -4
},
{
question: "How many known species of plants are found in the Amazonian Rain Forest?",
answer: 7
},
{
question: "How many minutes does an average person sleep in their lifetime? (minutes)",
answer: 7
},
{
question: "Suppose two 5 kilogram masses are on either side of a pulley, attached by a very light string. As the mass of one of them is increased indefinitely, what will the tension in the string approach, in Newtons?",
answer: 2
},
{
question: "How many light-years is the visible universe?",
answer: 10
},
{
question: "What is the number of carbon atoms (as in diamond) it would take to fill Lake Superior?",
answer: 42
},
{
question: "What is the ratio of the volume that water occupies as steam (just beginning to boil) compared to water at room temperature?",
answer: 3
},
{
question: "How many milligrams of tea (not including water) are there in China?",
answer: 15
},
{
question: "Elon Musk hopes that his Boring Company will eventually fill the subsurface with tunnels, and is currently aiming for roughly a 4-meter diameter. What mass of rock, in kg, would his company be displacing with a tunnel connecting Los Angeles and San Francisco in roughly a straight line?",
answer: 10
},
{
question: "How many alligators live in Florida?",
answer: 6
},
{
question: "The first mousetrap ever invented snapped shut in what fraction of a second?",
answer: -5
},
{
question: "If a vehicle used standard CDs for wheels, how many times would the wheels turn traveling across the Mackinac Bridge?",
answer: 4
},
{
question: "What would be the mass of the planet Mars in megagrams if it were made entirely of elemental gold?",
answer: 21
},
{
question: "How many pounds of CO2 are created by a plane flying from Boston to Houston?",
answer: 5
},
{
question: "How many E. Coli bacteria would have to lay end-to end (lengthwise) to span the length of a meter stick?",
answer: 6
},
{
question: "What is the diameter of a golf ball, as a multiple of the height of Mount Everest?",
answer: -6
},
{
question: "What is the maximum number of ping pong balls you could fit into Mars?",
answer: 24
},
{
question: "How many pop cans laid end to end would it take make a round trip between New York City and Los Angeles?",
answer: 8
},
{
question: "What’s the Jupiter Mass in kg?",
answer: 27
},
{
question: "How many metric tonnes of fresh coffee beans would you need to brew a cup of coffee for every adult in the world?",
answer: 5
},
{
question: "How long in seconds would you have to hold the down button in order to get to the 654,321st row of an excel document?",
answer: 4
},
{
question: "How many hydrogen atoms are there in 1 mol of glucose?",
answer: 25
},
{
question: "How many miles of road are in the US interstate system?",
answer: 4
},
{
question: "What is the probability of getting a royal flush in a standard 5-card poker hand?",
answer: -6
},
{
question: "If the surface of the Earth were covered in a mol of moles, how deep would the pile of moles be in meters?",
answer: 5
},
{
question: "What is the distance from Wellington, New Zealand to London, England divided by the length of the Suez Canal?",
answer: 3
},
{
question: "How long (in hours) would it take a Tyrannosaurs Rex to run a marathon, assuming they ran at top speed constantly?",
answer: 0
},
{
question: "Climbing stairs is an example of increasing gravitational potential energy. Heating up water requires thermal energy. Both forms of energy are measured in Joules. How many flights of stairs would the author of this question (mass = 85 kg) have to climb in order to equal the amount of thermal energy needed to raise a 40 gallon bathtub of water from room temperature (20 C) to a very hot 37.8 C?",
answer: 3
},
{
question: "If I had a nickel for every time an American driver was pulled over for speeding, how many years would it take for me to become the richest person in the world?",
answer: 4
},
{
question: "What is the side length in kilometers of the smallest cube that could hold all of the water in the Pacific Ocean?",
answer: 3
},
{
question: "What is the number of electrons in a Coulomb divided by the number of Amps flowing through a 60 W bulb?",
answer: -19
},
{
question: "Your airplane masses 8 grams. How many fully loaded Airbus A380s is that?",
answer: 8
},
{
question: "How many questions are there in this test? (30 question test)",
answer: 1
},
{
question: "How many middle school and high school students will compete in Science Olympiad this year in the United States?",
answer: 5
},
{
question: "How many people are talking or texting on their cell phone at this moment on this planet?",
answer: 7
},
{
question: "How many fish are in the ocean?",
answer: 12
},
{
question: "How many squares of toilet paper are in a 100-car train of box cars, each full of rolls of toilet paper?",
answer: 9
},
{
question: "Assuming they eat the average amount for Americans, how many chickens are consumed by the population of Pittsburgh annually?",
answer: 7
},
{
question: "How many avocados would you need to eat in order to consume enough calories to walk around the earth 4 times?",
answer: 4
},
{
question: "How many milliliters of sweat are produced in the United States every year?",
answer: 14
},
{
question: "How many verses are in the Bible?",
answer: 4
},
{
question: "How old are you?",
answer: 1
},
{
question: "How many red blood cells are needed to blanket the surface area of a tennis ball?",
answer: 8
},
{
question: "How many liters of milk does one lactating Holstein cow produce in a day?",
answer: 1
},
{
question: "What is 2^2017?",
answer: 607
},
{
question: "If every elephant in the world was replaced with an animal cracker version and eaten by a man named Michael, how many kilocalories would Michael gain?",
answer: 7
},
{
question: "What is the (Win)^(Losses) of the Rice University football team in the 2018 season?",
answer: 3
},
{
question: "What is the market cap of Alphabet?",
answer: 12
},
{
question: "What is the tenth triangular number?",
answer: 2
},
{
question: "How many stray cats are there in New York State?",
answer: 6
},
{
question: "The combined weekly salary of the number of 1st year teachers in GA in pennies.",
answer: 8
},
{
question: "What is the mass of the supermassive black hole at the center of the Milky Way?",
answer: 38
},
{
question: "Unfortunately, Chris and Allen fail miserably. But Franklin shows mercy and gives them another chance. He tests Chris and Allen on acids and bases. What is the concentration of the hydroxide ion, OH - , in a typical orange?",
answer: -11
},
{
question: "What is the velocity of a sneeze in m/s?",
answer: 0
},
{
question: "How many carbon atoms would span the length of a football field?",
answer: 12
},
{
question: "If I were able to connect photons of visible red light, lengthwise, how many would I need to link in order to connect a point in this room to the North Pole?",
answer: 13
},
{
question: "Determine the height of the Great Pyramid of Giza divided by the thickness of a cell membrane.",
answer: 10
},
{
question: "What is the yearly cost of traffic accidents in the United States, in dollars?",
answer: 12
},
{
question: "You leave the Earth today to reach the center of our galaxy in 50,000 AD. You want to watch the movie Titaniconce so that it starts and ends at the same time as your trip. Assuming you are immortal and time dilation is a thing, at how many frames per second would you have to watch the Titanic?",
answer: -7
},
{
question: "What is the area of Alaska in square inches?",
answer: 15
},
{
question: "If a trillion dollars were represented with a stack of $1 bills, how far would the stack reach in cm",
answer: 11
},
{
question: "How radioactive are bananas, in Sieverts?",
answer: -7
},
{
question: "More Americans died in the Civil War than in any other war. About how many?",
answer: 6
},
{
question: "What is the radius in centimeters of the smallest sphere that could hold all of the water in Atlantic Ocean?",
answer: 7
},
{
question: "If Lake Superior were filled with Mountain Dew as opposed to water, how many Calories would be in the lake?",
answer: 18
},
{
question: "How many characters (spaces included) are in the 2018-2019 scioly rule manual?",
answer: 5
},
{
question: "The number of Earths that would fit inside of the sun?",
answer: 6
},
{
question: "How long does an average dog live in milliseconds?",
answer: 11
},
{
question: "What is the value (in US dollars) of a pile of $100 bills equal in mass to an average Asian elephant?",
answer: 8
},
{
question: "How many tons of CO2 were produced by the combustion of heptane of Problem 21? (Problem 21: How many gallons of gasoline were consumed by cars in the U.S. in 2003?)",
answer: 9
},
{
question: "This morning, Saturday November 18 at 5:42 am, the moon was in its New Moon phase as seen from Kansas City, MO. How many minutes until the next New Moon?",
answer: 4
},
{
question: "What is the density of a neutron star?",
answer: 17
},
{
question: "What was the video game industry revenue, in 2017?",
answer: 11
},
{
question: "How many Snapchats were sent worldwide in 2018?",
answer: 12
},
{
question: "What is the ratio of oxygen gas to water vapor present in Earth’s atmosphere (by volume)?",
answer: 2
},
{
question: "How many electrons flow past a point on a circuit per hour when the current is 5 amps?",
answer: 23
},
{
question: "At what speed would a standard brick have to travel in order to have the same kinetic energy as a Ping-Pong ball travelling at a cheetah’s top speed? Give your answer in km/hr.",
answer: 0
},
{
question: "How many breaths does an average adult human take in a year?",
answer: 9
},
{
question: "How many times is the word “Bee” said in the Bee Movie?",
answer: 2
},
{
question: "China's population is how large?",
answer: 9
},
{
question: "How many miles of C60 cassette tape would you go through if you were making a nonstop transcontinental drive from New York City to LA? Exclude flipping from one side to the other.",
answer: 0
},
{
question: "What is the GDP of the United States divided by the average cost of a car?",
answer: 6
},
{
question: "What is the speed of a sneeze in miles per hour?",
answer: 2
},
{
question: "How much oxygen does a person consume in a day in liters?",
answer: 3
},
{
question: "How many drops of water would fit in Lake Erie?",
answer: 17
},
{
question: "What is the greatest number of baseballs you could fit on a Football field without stacking?",
answer: 4
},
{
question: "How many fortnights would it take to traverse the length of a grain of rice, longwise, travelling at the speed of light?",
answer: -19
},
{
question: "How many MSJHS Science Olympiad teams would be needed to equal the population of Vancouver, BC in 2014?",
answer: 4
},
{
question: "Estimate 6^21",
answer: 16
},
{
question: "2^35",
answer: 10
},
{
question: "How many sheets of standard printer paper would fit in the interior of a Volkswagon Beetle?",
answer: 5
},
{
question: "How many total pounds of bananas are consumed per year by all of the people on the continent of Africa?",
answer: 5
},
{
question: "How many molecules of water are in a Lake Erie?",
answer: 42
},
{
question: "During the awards ceremony, Allen is extremely nervous so he starts doing stuff with his Rubik’s cube. Alicia comments, “Rubik’s cubes are boring.” Allen notes that Rubik’s cubes can never become boring since there so many different possible configurations. If Allen averages 201.7 seconds to solve a Rubik’s cube, how long would it take him to solve all possibilities in years?",
answer: 14
},
{
question: "How many molecules of water would be in an Olympic-size swimming pool?",
answer: 32
},
{
question: "How many atoms are in the human body?",
answer: 28
},
{
question: "How many mg of sodium are in 24 24-packs of Coca Cola?",
answer: 4
},
{
question: "How many feathers are on a turkey?",
answer: 3
},
{
question: "How many water molecules are in a typical snowflake?",
answer: 19
},
{
question: "How many centimeters are worn off a car tire during one revolution of the wheel?",
answer: -8
},
{
question: "How many minutes are there in a century?",
answer: 8
},
{
question: "How many pieces of popped popcorn would it take to fill an olympic sized swimming pool?",
answer: 8
},
{
question: "How many 8-cut pizzas would it take to provide two slices to every 2016-2017 New York State Science Olympiad competitor?",
answer: 4
},
{
question: "What is the weight, in Newtons, of a carbon atom on the moon?",
answer: -26
},
{
question: "As a factor, how much more is the price of an Engineering degree from an average university than the price of a McDonald's double cheeseburger?",
answer: 4
},
{
question: "How many millimeters does the planet Mercury travel during a performance of Beethoven’s 9th symphony? Use Mercury’s average orbital speed.",
answer: 11
},
{
question: "What is the probability that you will be struck by lightning today?",
answer: -6
},
{
question: "How many words are there on this test?",
answer: 2
},
{
question: "Of the quantity found in the question above, n% is used to convert protons and electrons to neutrons. What is n? (Question above: How much energy, in Joules, is released in a typical type II supernova from gravitational potential energy?)",
answer: 1
},
{
question: "How many years ago did the last dinosaur go extinct?",
answer: 7
},
{
question: "What is the ratio of the solar energy reaching the Earth's disk to the average electrical energy consumption of Earth's inhabitants?",
answer: 5
},
{
question: "How many total students does the University of Chicago have?",
answer: 4
},
{
question: "A can of coca cola contains how many pounds of dissolved gas?",
answer: -3
},
{
question: "That’s why we have the not posting How many times larger is the sun than the Earth?",
answer: 5
},
{
question: "According to the 2016 US Census, how many households are in the United States?",
answer: 8
},
{
question: "How many Main Streets are there in New England? (N.B. New England is comprised of Maine, New Hampshire, Vermont, Massachusetts, Rhode Island, and Connecticut)",
answer: 2
},
{
question: "What is the volume of air breathed in by the whole US population each month in cubic meters?",
answer: 12
},
{
question: "How many marbles would fill a Olympic size swimming pool",
answer: 8
},
{
question: "What fraction of a 2-liter sprite bottle can a single grain of rice fill up? (bottles)",
answer: 6
},
{
question: "How many atms are there in one lb/in^2?",
answer: 1
},
{
question: "What is the word count of the Declaration of Independence?",
answer: 3
},
{
question: "How many total seconds of video were uploaded on YouTube in 2017?",
answer: 12
},
{
question: "What is the density at the center of the Sun?",
answer: 5
},
{
question: "How many whiskers from feral cats are there in LA county?",
answer: 8
},
{
question: "Determine the width of a single HIV virus divided by the length of an average red ant.",
answer: -5
},
{
question: "How many Hope diamonds could be made from carbon content of the Earth?",
answer: 23
},
{
question: "How many humans were born since last year's national Science Olympiad Tournament? (2019 Nationals)",
answer: 8
},
{
question: "How many hair follicles are on an average adult’s scalp?",
answer: 5
},
{
question: "Since the release of Pokemon Go, players in the United States have collectively walked how many roundtrips between the moon and Earth? (2019 GGSO Q25)",
answer: 2
},
{
question: "What would be the total mass of a 2m high brick wall along the entire US-Mexico border?",
answer: 8
},
{
question: "2^87",
answer: 26
},
{
question: "How many golf balls will fit in a 747?",
answer: 7
},
{
question: "What is the population of the world?",
answer: 10
},
{
question: "There are 300 distinguishable penguins that line up to receive a hug from a polar bear. How many different ways can the penguins line up?",
answer: 614
},
{
question: "How many angstroms are there between the center of South Africa and the center of Australia?",
answer: 17
},
{
question: "How long, in years, would it take a sloth to travel on a straight path from New York to Los Angeles?",
answer: 1
},
{
question: "Or perhaps you would like something more relaxing, like taking a sailboat across the Atlantic. How many hours of vacation time would it take you to sail all that way?",
answer: 2
},
{
question: "What is e^50?",
answer: 22
},
{
question: "United States contains how many square kilometers?",
answer: 6
},
{
question: "How many times will the average teenager's heart beat in a year?",
answer: 7
},
{
question: "How many handcuffs would it take in order to create an interlocked chain from Istanbul to Beijing?",
answer: 7
},
{
question: "How many DVDs stacked together would it take to reach the moon (assume they are stacked like a ring)?",
answer: 11
},
{
question: "What proportion of all human proteins are cell-surface receptors?",
answer: -1
},
{
question: "What is the mass of a molecule of Red Dye #40 in terms of the mass of one electron?",
answer: 5
},
{
question: "In Joules, how much energy is released by the Sun every second?",
answer: 26
},
{
question: "How much money (dollars) was spent on advertising during Super Bowl 52?",
answer: 8
},
{
question: "What is the repulsive force in Newtons between two protons forced within one Angstrom?",
answer: -8
},
{
question: "Consider a circle divided into regions by drawing lines between n points, such that no three lines intersect. If there are 20 points around the circle, how many regions will be formed?",
answer: 4
},
{
question: "How much electrical energy in joules does the US use in one year?",
answer: 19
},
{
question: "If the volume of the Earth was comprised solely of water, what would the mass of earth be in grams?",
answer: 15
},
{
question: "How many calories does the sun output per second?",
answer: 26
},
{
question: "Forrest Gump ran from the coast of Maine to Los Angeles. How many steps did he take?",
answer: 7
},
{
question: "How many golf tees could we make out of a giant sequoia tree?",
answer: 9
},
{
question: "What is the value of e^50?",
answer: 21
},
{
question: "How many ppm of carbon dioxide gas is processed in a year of photosynthesis by all of the trees on earth?",
answer: 24
},
{
question: "How many times does lightning strike the earth each second?",
answer: 2
},
{
question: "How many living people in the United States have a first name of Allen?",
answer: 5
},
{
question: "How many calories are in a teraliter of maple syrup?",
answer: 15
},
{
question: "How many miles of eyelashes are shed by a person over their entire life?",
answer: -2
},
{
question: "How many total kilometers were travelled in 2015 by all of the vehicles on Kansas roads, streets, and highways? (vehicle - kilometers)",
answer: 11
},
{
question: "If you make the dubious decision to obtain all of your caloric needs by eating jelly beans and somehow successfully avoid death by malnutrition or diabetes, how many jelly beans will you consume in a year?",
answer: 5
},
{
question: "You’re having a great time at hot pot because it’s, ya know, hot pot. There’s also a few vegetarians on the team who have fun pointing out things like “beef tongue” and such. Unfortunately, there’s only so much variety for them. Napa cabbage prefer a certain soil pH in order to obtain sufficient calcium, magnesium, and other nutrients. How much more concentrated are hydrogen ions in this perfect soil than in a 1 M solution of acetic acid?",
answer: -4
},
{
question: "In an average lifetime, how far will you walk in meters?",
answer: 8
},
{
question: "How far, in centimeters, will light travel in one fortnight?",
answer: 16
},
{
question: "How many square meters does metro-Atlanta cover?",
answer: 7
},
{
question: "The diameter of a DNA molecule in inches?",
answer: -4
},
{
question: "How many atoms of nihonium would have an equivalent mass? (What is the average mass of an American male over the age of 20 in picograms?)",
answer: 26
},
{
question: "What is the mass of the Sun in gigagrams?",
answer: 24
},
{
question: "The bee hummingbird is the world’s smallest bird. How many bee hummingbird wingspans fit into the wingspan of an airplane?",
answer: 3
},
{
question: "How many seconds does it take light to travel from a lighthouse to a ship that is 1 mile away?",
answer: -5
},
{
question: "How many March Madness brackets would each member of the US Congress have to fill out in order to guarantee that someone has a perfect bracket? You can assume that each member of Congress fills out the same number of brackets and that all filled-out brackets are unique.",
answer: 16
},
{
question: "If you were counting up, starting at 1, at the tempo of Staying Alive by the Bee Gees, how long would it take, in hours, to count up to 45 trillion?",
answer: 9
},
{
question: "Estimate the population of Colorado.",
answer: 6
},
{
question: "What is the atomic radius of Carbon if measured in miles?",
answer: -14
},
{
question: "How many gallons of milk does a dairy cow produce each year?",
answer: 3
},
{
question: "How many pieces of space debris smaller than 1 cm floating around the Earth?",
answer: 8
},
{
question: "Last but not least, how many boards could the Mongols hoard, if the Mongol hordes got bored?",
answer: 6
},
{
question: "What is the combined weight in Newtons on all of the spiders on Earth?",
answer: 11
},
{
question: "How much energy in joules are required to accelerate a tennis ball to the speed of light?",
answer: 16
},
{
question: "What is the height of Sear’s Tower in nanometers?",
answer: 11
},
{
question: "How many square feet is the country of Argentina?",
answer: 13
},
{
question: "Approximate the value of√(100+√(100+√(100)^-7)^-8)^-9.",
answer: -10
},
{
question: "Bubbles the orangutan is also cursed with eternal life until she can correctly sort a randomly shuffled set of flashcards containing one of every word in the English language into alphabetical order. Bubbles is somewhat smarter than Bogo and approaches this task by going through the entire set and comparing the card she is looking at with the one immediately before. If that card is alphabetically before the sequentially previous card, she swaps their two positions and moves on to next card. When Bubbles reaches the end of the set, she goes back to the beginning and starts again with the updated order. Bubbles practices on a 10 card set of single digit numbers instead of words and after optimizing her technique, she can sort the practice set on average in just 100 seconds. With this knowledge, how many seconds should it take for Bubbles to sort the entire English language?",
answer: 10
},
{
question: "What is the gravitational pull in Newtons between Alicia and Wendy when they stand 2 ft apart?",
answer: -6
},
{
question: "What is the volume of toilet water, in petaliters, flushed by the average American male in his lifetime?",
answer: -9
},
{
question: "What distance, in Mm, would the pies from problem #25 stretch if laid out side-by-side (assume 10 inch diameter pies)? (Problem #25: How many pumpkin pies are sold between November and December in the US each year?)",
answer: 1
},
{
question: "Using just the letters in the alphabet, how many unique 26-letter sequences are possible?",
answer: 26
},
{
question: "How many grams of salt are in the Pacific Ocean?",
answer: 22
},
{
question: "What is the elevation is Mt. Everest in feets?",
answer: 4
},
{
question: "How much money will be spent on Black Friday shopping this year? (2018)",
answer: 12
},
{
question: "How many characters(numbers, letters, etc.) are on this test? (50 questions)",
answer: 3
},
{
question: "How many active users does Facebook have? (2019)",
answer: 9
},
{
question: "How many tower cranes are currently in active use for construction projects around the world today?",
answer: 5
},
{
question: "Freshwater is 0.223% salt by weight, so how much salt could you produce in kg from all the water in the Charles River?",
answer: 9
},
{
question: "Start with a dollar. Double it every day. In 48 days, you will own _________ dollars asset.",
answer: 14
},
{
question: "What is the slowest you have to travel at the equator to constantly stay in daylight in miles per second?",
answer: -1
},
{
question: "How many oxygen molecules are in a cup of water?",
answer: 26
},
{
question: "What is 20^19?",
answer: 25
},
{
question: "How old is the person who wrote this test?",
answer: 1
},
{
question: "How many tons of food are wasted by Americans in any given year? (tons)",
answer: 8
},
{
question: "How many helium balloons are needed to carry a man down the street if he is hovering just a few feet off the ground?",
answer: 4
},
{
question: "At what speed would a standard brick have to travel in order to have the same kinetic energy as a Ping-Pong ball travelling at a cheetah’s top speed? Give your answer in km/hr.",
answer: 0
},
{
question: "How many square inches of pizza are consumed during the super bowl?",
answer: 9