-
Notifications
You must be signed in to change notification settings - Fork 488
Expand file tree
/
Copy pathsample-prompts.json
More file actions
2402 lines (2402 loc) · 66.3 KB
/
Copy pathsample-prompts.json
File metadata and controls
2402 lines (2402 loc) · 66.3 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
[
{
"id": 1,
"category": "Animals",
"question": "True or False: A slug has four noses?",
"answer": "True"
},
{
"id": 2,
"category": "Human Body",
"question": "What is the only part of the human body that has no blood supply?",
"answer": "The cornea"
},
{
"id": 3,
"category": "Space",
"question": "True or False: Footprints left by astronauts on the Moon will likely stay there for millions of years.",
"answer": "True (due to no wind or water erosion)"
},
{
"id": 4,
"category": "Food & Drink",
"question": "Which popular condiment was once sold as medicine in the 1830s?",
"answer": "Ketchup"
},
{
"id": 5,
"category": "History",
"question": "True or False: The Great Wall of China is visible from space with the naked eye.",
"answer": "False (this is a common misconception)"
},
{
"id": 6,
"category": "Animals",
"question": "How many hearts does an octopus have?",
"answer": "Three"
},
{
"id": 7,
"category": "Geography",
"question": "What is the only country that borders both the Mediterranean Sea and the Black Sea?",
"answer": "Turkey"
},
{
"id": 8,
"category": "Science",
"question": "True or False: Sound travels faster in water than in air.",
"answer": "True"
},
{
"id": 9,
"category": "Language",
"question": "What is the most commonly used letter in the English language?",
"answer": "E"
},
{
"id": 10,
"category": "Animals",
"question": "True or False: A group of flamingos is called a 'flamboyance'.",
"answer": "True"
},
{
"id": 11,
"category": "Human Body",
"question": "Approximately how many times does the average human heart beat in a day?",
"answer": "Around 100,000 times"
},
{
"id": 12,
"category": "Technology",
"question": "What company is technically the world's largest tire manufacturer by number of tires produced?",
"answer": "Lego (they produce millions of tiny tires for their toys)"
},
{
"id": 13,
"category": "Nature",
"question": "True or False: The Eiffel Tower can be 15 cm taller during the summer.",
"answer": "True (due to thermal expansion of iron)"
},
{
"id": 14,
"category": "Animals",
"question": "Which mammal has the most powerful bite force?",
"answer": "Hippopotamus"
},
{
"id": 15,
"category": "Food & Drink",
"question": "True or False: Honey never spoils.",
"answer": "True (archaeologists have found pots of honey in ancient Egyptian tombs that are thousands of years old and still perfectly edible)"
},
{
"id": 16,
"category": "History",
"question": "What was the original purpose of bubble wrap?",
"answer": "Textured wallpaper"
},
{
"id": 17,
"category": "Space",
"question": "Which planet in our solar system is known for its prominent rings?",
"answer": "Saturn"
},
{
"id": 18,
"category": "Animals",
"question": "True or False: Butterflies taste with their feet.",
"answer": "True"
},
{
"id": 19,
"category": "Geography",
"question": "Which country has the most pyramids in the world?",
"answer": "Sudan (not Egypt)"
},
{
"id": 20,
"category": "Science",
"question": "What is the chemical symbol for gold?",
"answer": "Au (from Latin 'aurum')"
},
{
"id": 21,
"category": "Animals",
"question": "True or False: An ostrich's eye is bigger than its brain.",
"answer": "True"
},
{
"id": 22,
"category": "Human Body",
"question": "What percentage of the human body is water?",
"answer": "Approximately 60%"
},
{
"id": 23,
"category": "History",
"question": "In what year did the Titanic sink?",
"answer": "1912"
},
{
"id": 24,
"category": "Food & Drink",
"question": "Are peanuts botanically classified as nuts or legumes?",
"answer": "Legumes"
},
{
"id": 25,
"category": "Animals",
"question": "True or False: A shrimp's heart is in its head.",
"answer": "True"
},
{
"id": 26,
"category": "Nature",
"question": "What is the tallest type of grass on Earth?",
"answer": "Bamboo"
},
{
"id": 27,
"category": "Space",
"question": "How long does it take for light from the Sun to reach Earth?",
"answer": "Approximately 8 minutes and 20 seconds"
},
{
"id": 28,
"category": "Animals",
"question": "Which animal is known to have 'language' with specific 'words' for different predators?",
"answer": "Prairie dogs"
},
{
"id": 29,
"category": "Technology",
"question": "What does 'Wi-Fi' stand for?",
"answer": "Nothing (it's a branded name, not an acronym for Wireless Fidelity as commonly believed)"
},
{
"id": 30,
"category": "History",
"question": "True or False: Cleopatra was alive closer in time to the building of the first Pizza Hut than to the building of the Great Pyramid of Giza.",
"answer": "True"
},
{
"id": 31,
"category": "Animals",
"question": "What is the only mammal capable of true sustained flight?",
"answer": "Bat"
},
{
"id": 32,
"category": "Human Body",
"question": "True or False: Humans share approximately 50% of their DNA with bananas.",
"answer": "True"
},
{
"id": 33,
"category": "Geography",
"question": "What is the largest desert in the world (Hint: It's not a hot desert)?",
"answer": "Antarctica (polar desert)"
},
{
"id": 34,
"category": "Food & Drink",
"question": "Before the 17th century, what color were carrots commonly?",
"answer": "Purple or white"
},
{
"id": 35,
"category": "Animals",
"question": "True or False: Cows have best friends and can become stressed when separated from them.",
"answer": "True"
},
{
"id": 36,
"category": "Science",
"question": "What is the hardest known natural material?",
"answer": "Diamond"
},
{
"id": 37,
"category": "Language",
"question": "What is a 'pangram'?",
"answer": "A sentence that contains every letter of the alphabet (e.g., 'The quick brown fox jumps over the lazy dog')"
},
{
"id": 38,
"category": "Animals",
"question": "True or False: Sea otters hold hands while sleeping so they don't drift apart.",
"answer": "True"
},
{
"id": 39,
"category": "History",
"question": "The shortest war in history was between Britain and Zanzibar in 1896. How long did it last?",
"answer": "Approximately 38 to 45 minutes"
},
{
"id": 40,
"category": "Space",
"question": "Which planet is known as the 'Red Planet'?",
"answer": "Mars"
},
{
"id": 41,
"category": "Animals",
"question": "What bird can fly backwards?",
"answer": "Hummingbird"
},
{
"id": 42,
"category": "Human Body",
"question": "True or False: You use more muscles to frown than to smile.",
"answer": "False (it's roughly the other way around or comparable, depending on the intensity)"
},
{
"id": 43,
"category": "Geography",
"question": "What is the capital of Canada?",
"answer": "Ottawa"
},
{
"id": 44,
"category": "Food & Drink",
"question": "From which plant is tequila primarily made?",
"answer": "Blue Agave"
},
{
"id": 45,
"category": "Animals",
"question": "True or False: A rhinoceros's horn is made of hair.",
"answer": "True (it's made of keratin, the same protein found in hair and fingernails)"
},
{
"id": 46,
"category": "Nature",
"question": "What is the world's largest living structure?",
"answer": "The Great Barrier Reef"
},
{
"id": 47,
"category": "Technology",
"question": "In what decade was the first Apple iPhone released?",
"answer": "2000s (specifically 2007)"
},
{
"id": 48,
"category": "Animals",
"question": "Can a snail sleep for up to three years?",
"answer": "True (under unfavorable conditions, they can enter long periods of hibernation/aestivation)"
},
{
"id": 49,
"category": "History",
"question": "Which famous scientist developed the theory of relativity?",
"answer": "Albert Einstein"
},
{
"id": 50,
"category": "Space",
"question": "True or False: There is sound in space.",
"answer": "False (space is a vacuum, and sound waves need a medium to travel through)"
},
{
"id": 51,
"category": "Animals",
"question": "What color is a polar bear's skin?",
"answer": "Black (underneath their white fur)"
},
{
"id": 52,
"category": "Human Body",
"question": "How many bones are in an adult human body?",
"answer": "206"
},
{
"id": 53,
"category": "Geography",
"question": "Which ocean is the largest?",
"answer": "Pacific Ocean"
},
{
"id": 54,
"category": "Food & Drink",
"question": "What is the main ingredient in traditional Japanese miso soup?",
"answer": "Soybeans (fermented into miso paste)"
},
{
"id": 55,
"category": "Animals",
"question": "True or False: A group of owls is called a 'parliament'.",
"answer": "True"
},
{
"id": 56,
"category": "Science",
"question": "At what temperature Celsius and Fahrenheit are equal?",
"answer": "-40 degrees"
},
{
"id": 57,
"category": "Language",
"question": "The word 'alphabet' comes from the first two letters of which alphabet?",
"answer": "Greek (Alpha and Beta)"
},
{
"id": 58,
"category": "Animals",
"question": "How many legs does a spider have?",
"answer": "Eight"
},
{
"id": 59,
"category": "History",
"question": "Who was the first woman to fly solo across the Atlantic Ocean?",
"answer": "Amelia Earhart"
},
{
"id": 60,
"category": "Space",
"question": "What is the name of the galaxy that contains our Solar System?",
"answer": "The Milky Way"
},
{
"id": 61,
"category": "Animals",
"question": "True or False: Elephants are the only mammals that can't jump.",
"answer": "True (among adult land mammals; sloths and rhinos also have difficulty)"
},
{
"id": 62,
"category": "Human Body",
"question": "Where is the smallest bone in the human body located?",
"answer": "In the ear (the stapes or stirrup bone)"
},
{
"id": 63,
"category": "Nature",
"question": "What phenomenon causes the Aurora Borealis (Northern Lights)?",
"answer": "Charged particles from the sun colliding with atoms in Earth's atmosphere"
},
{
"id": 64,
"category": "Food & Drink",
"question": "True or False: Strawberries are not technically berries, but bananas are.",
"answer": "True (botanically speaking)"
},
{
"id": 65,
"category": "Animals",
"question": "What is a baby kangaroo called?",
"answer": "A joey"
},
{
"id": 66,
"category": "Technology",
"question": "What does the acronym 'LASER' stand for?",
"answer": "Light Amplification by Stimulated Emission of Radiation"
},
{
"id": 67,
"category": "History",
"question": "Which ancient civilization built Machu Picchu?",
"answer": "The Inca Empire"
},
{
"id": 68,
"category": "Animals",
"question": "True or False: A crocodile cannot stick its tongue out.",
"answer": "True"
},
{
"id": 69,
"category": "Geography",
"question": "Mount Everest, the world's highest peak, is located in which mountain range?",
"answer": "The Himalayas"
},
{
"id": 70,
"category": "Science",
"question": "What is H2O more commonly known as?",
"answer": "Water"
},
{
"id": 71,
"category": "Animals",
"question": "Which insect is known for its 'waggle dance' to communicate food sources?",
"answer": "Honeybee"
},
{
"id": 72,
"category": "Human Body",
"question": "True or False: Your stomach acid is strong enough to dissolve razor blades.",
"answer": "True (though it would take time, and it's not recommended to test)"
},
{
"id": 73,
"category": "Space",
"question": "What is the largest planet in our solar system?",
"answer": "Jupiter"
},
{
"id": 74,
"category": "Food & Drink",
"question": "What is the primary ingredient in guacamole?",
"answer": "Avocado"
},
{
"id": 75,
"category": "Animals",
"question": "True or False: Goldfish have a memory span of only a few seconds.",
"answer": "False (they can remember things for months)"
},
{
"id": 76,
"category": "History",
"question": "The first modern Olympic Games were held in which city in 1896?",
"answer": "Athens, Greece"
},
{
"id": 77,
"category": "Nature",
"question": "What is the process by which plants make their own food using sunlight?",
"answer": "Photosynthesis"
},
{
"id": 78,
"category": "Animals",
"question": "What is the fastest land animal?",
"answer": "Cheetah"
},
{
"id": 79,
"category": "Language",
"question": "How many letters are in the Hawaiian alphabet?",
"answer": "12 (A, E, I, O, U, H, K, L, M, N, P, W) - sometimes 13 with the 'okina"
},
{
"id": 80,
"category": "Technology",
"question": "What does 'CPU' stand for in computing?",
"answer": "Central Processing Unit"
},
{
"id": 81,
"category": "Animals",
"question": "True or False: A group of crows is called a 'murder'.",
"answer": "True"
},
{
"id": 82,
"category": "Human Body",
"question": "What is the largest organ in the human body?",
"answer": "The skin"
},
{
"id": 83,
"category": "Geography",
"question": "What is the longest river in the world?",
"answer": "The Nile (though the Amazon is a close contender depending on measurement)"
},
{
"id": 84,
"category": "Food & Drink",
"question": "Which country is the origin of the croissant?",
"answer": "Austria (though popularized by France)"
},
{
"id": 85,
"category": "Animals",
"question": "Can a shark blink?",
"answer": "Yes, some sharks have nictitating membranes (like eyelids)"
},
{
"id": 86,
"category": "Science",
"question": "What force keeps planets in orbit around the Sun?",
"answer": "Gravity"
},
{
"id": 87,
"category": "History",
"question": "The Roaring Twenties refers to which decade?",
"answer": "The 1920s"
},
{
"id": 88,
"category": "Animals",
"question": "True or False: A giraffe has the same number of neck vertebrae as a human.",
"answer": "True (both have seven, though a giraffe's are much larger)"
},
{
"id": 89,
"category": "Space",
"question": "Which is the hottest planet in our solar system?",
"answer": "Venus (due to its thick atmosphere causing a runaway greenhouse effect)"
},
{
"id": 90,
"category": "Nature",
"question": "What type of rock is formed from cooled lava or magma?",
"answer": "Igneous rock"
},
{
"id": 91,
"category": "Animals",
"question": "What is the collective noun for a group of kittens?",
"answer": "A kindle or an intrigue"
},
{
"id": 92,
"category": "Human Body",
"question": "True or False: Fingernails grow faster than toenails.",
"answer": "True"
},
{
"id": 93,
"category": "Technology",
"question": "The 'QWERTY' keyboard layout was designed to do what initially?",
"answer": "Slow down typists to prevent typewriter jams"
},
{
"id": 94,
"category": "Food & Drink",
"question": "What is the most consumed manufactured drink in the world?",
"answer": "Tea"
},
{
"id": 95,
"category": "Animals",
"question": "True or False: Wombat poop is cube-shaped.",
"answer": "True"
},
{
"id": 96,
"category": "History",
"question": "In which country did the Renaissance begin?",
"answer": "Italy"
},
{
"id": 97,
"category": "Geography",
"question": "What is the smallest country in the world?",
"answer": "Vatican City"
},
{
"id": 98,
"category": "Animals",
"question": "Which large marine animal is known for its complex songs that can travel for hundreds of miles?",
"answer": "Humpback whale"
},
{
"id": 99,
"category": "Science",
"question": "What is the common name for sodium chloride?",
"answer": "Salt"
},
{
"id": 100,
"category": "Language",
"question": "What is the name for a word that is spelled the same forwards and backwards?",
"answer": "Palindrome"
},
{
"id": 101,
"category": "Animals",
"question": "True or False: A reindeer's eyes change color from gold in summer to blue in winter.",
"answer": "True (to help them see better in low light)"
},
{
"id": 102,
"category": "Human Body",
"question": "How many taste buds does the average human tongue have?",
"answer": "Around 2,000 to 4,000 (but some sources say up to 10,000)"
},
{
"id": 103,
"category": "Space",
"question": "What is a 'light-year' a measure of?",
"answer": "Distance (not time)"
},
{
"id": 104,
"category": "Food & Drink",
"question": "Which fruit is known as the 'king of fruits' and is famous for its strong odor?",
"answer": "Durian"
},
{
"id": 105,
"category": "History",
"question": "The Statue of Liberty was a gift to the United States from which country?",
"answer": "France"
},
{
"id": 106,
"category": "Animals",
"question": "What is the primary diet of a panda?",
"answer": "Bamboo"
},
{
"id": 107,
"category": "Geography",
"question": "Which African country is known as the 'Land of a Thousand Hills'?",
"answer": "Rwanda"
},
{
"id": 108,
"category": "Science",
"question": "True or False: Lightning never strikes the same place twice.",
"answer": "False (it often strikes tall objects repeatedly)"
},
{
"id": 109,
"category": "Language",
"question": "The term 'OK' is believed to have originated as an abbreviation for what misspelled phrase?",
"answer": "'Oll Korrect' (All Correct)"
},
{
"id": 110,
"category": "Animals",
"question": "True or False: A platypus is a mammal that lays eggs.",
"answer": "True"
},
{
"id": 111,
"category": "Human Body",
"question": "What is the medical term for bad breath?",
"answer": "Halitosis"
},
{
"id": 112,
"category": "Technology",
"question": "What was the first video game to be played in space?",
"answer": "Tetris (on a Game Boy aboard the Mir space station)"
},
{
"id": 113,
"category": "Nature",
"question": "What is the name of the process where water evaporates from plant leaves?",
"answer": "Transpiration"
},
{
"id": 114,
"category": "Animals",
"question": "Which bird has the largest wingspan?",
"answer": "Wandering Albatross"
},
{
"id": 115,
"category": "Food & Drink",
"question": "True or False: White chocolate is not technically chocolate.",
"answer": "True (it doesn't contain cocoa solids)"
},
{
"id": 116,
"category": "History",
"question": "The ancient Egyptians worshipped cats and even mummified them. True or False?",
"answer": "True"
},
{
"id": 117,
"category": "Space",
"question": "What is the closest star to Earth (besides the Sun)?",
"answer": "Proxima Centauri"
},
{
"id": 118,
"category": "Animals",
"question": "True or False: A chameleon's tongue can be twice as long as its body.",
"answer": "True"
},
{
"id": 119,
"category": "Geography",
"question": "What is the only continent that lies in all four hemispheres?",
"answer": "Africa"
},
{
"id": 120,
"category": "Science",
"question": "What gas makes up the majority of Earth's atmosphere?",
"answer": "Nitrogen (about 78%)"
},
{
"id": 121,
"category": "Animals",
"question": "What do you call a female donkey?",
"answer": "A jenny"
},
{
"id": 122,
"category": "Human Body",
"question": "True or False: Humans are born with all their adult teeth already formed in their jaws.",
"answer": "False (baby teeth form first, adult teeth develop later)"
},
{
"id": 123,
"category": "History",
"question": "Who is credited with inventing the telephone?",
"answer": "Alexander Graham Bell"
},
{
"id": 124,
"category": "Food & Drink",
"question": "Which popular soda was originally marketed as a brain tonic and intellectual beverage?",
"answer": "Coca-Cola (originally contained cocaine and caffeine from kola nuts)"
},
{
"id": 125,
"category": "Animals",
"question": "True or False: A group of porcupines is called a 'prickle'.",
"answer": "True"
},
{
"id": 126,
"category": "Nature",
"question": "What gives flamingos their pink color?",
"answer": "Pigments in the crustaceans and algae they eat (carotenoids)"
},
{
"id": 127,
"category": "Space",
"question": "How many Earths could fit inside the Sun?",
"answer": "Approximately 1.3 million"
},
{
"id": 128,
"category": "Animals",
"question": "What is the loudest animal on Earth, capable of sounds up to 200 decibels?",
"answer": "Sperm Whale (their clicks)"
},
{
"id": 129,
"category": "Technology",
"question": "What was the original name of the search engine Google?",
"answer": "Backrub"
},
{
"id": 130,
"category": "History",
"question": "True or False: Vikings wore horned helmets.",
"answer": "False (this is a popular misconception; no historical evidence supports it)"
},
{
"id": 131,
"category": "Animals",
"question": "Which animal has fingerprints so similar to humans that they can contaminate crime scenes?",
"answer": "Koala"
},
{
"id": 132,
"category": "Human Body",
"question": "True or False: Sneezing with your eyes open is impossible.",
"answer": "False (though it's a strong reflex, it's possible for some)"
},
{
"id": 133,
"category": "Geography",
"question": "What is the deepest point in Earth's oceans?",
"answer": "The Challenger Deep in the Mariana Trench"
},
{
"id": 134,
"category": "Food & Drink",
"question": "Which nut is used to make marzipan?",
"answer": "Almonds"
},
{
"id": 135,
"category": "Animals",
"question": "True or False: A bat is a bird.",
"answer": "False (it's a mammal)"
},
{
"id": 136,
"category": "Science",
"question": "What is the boiling point of water at sea level in Celsius?",
"answer": "100 degrees Celsius"
},
{
"id": 137,
"category": "Language",
"question": "What is the only English word that ends in '-mt'?",
"answer": "Dreamt (and its variants like undreamt)"
},
{
"id": 138,
"category": "Animals",
"question": "How many pairs of wings does a bee have?",
"answer": "Two"
},
{
"id": 139,
"category": "History",
"question": "The famous 'I Have a Dream' speech was delivered by whom?",
"answer": "Martin Luther King Jr."
},
{
"id": 140,
"category": "Space",
"question": "True or False: The dark side of the moon always faces away from the Sun.",
"answer": "False (it refers to the side that always faces away from Earth; both sides get sunlight)"
},
{
"id": 141,
"category": "Animals",
"question": "What is the only dog breed that cannot bark?",
"answer": "Basenji (they make a yodeling sound instead)"
},
{
"id": 142,
"category": "Human Body",
"question": "Approximately how much blood does the average adult human body contain?",
"answer": "About 5 liters (or 1.3 gallons)"
},
{
"id": 143,
"category": "Nature",
"question": "What precious gem is formed from carbon under high pressure?",
"answer": "Diamond"
},
{
"id": 144,
"category": "Food & Drink",
"question": "True or False: The 'M' in M&M's stands for Mars and Murrie.",
"answer": "True"
},
{
"id": 145,
"category": "Animals",
"question": "A 'sounder' is the collective noun for which animal?",
"answer": "Wild boar or pigs"
},
{
"id": 146,
"category": "Technology",
"question": "What does 'URL' stand for?",
"answer": "Uniform Resource Locator"
},
{
"id": 147,
"category": "History",
"question": "Which war involved the Trojan Horse?",
"answer": "The Trojan War"
},
{
"id": 148,
"category": "Animals",
"question": "True or False: A camel stores water in its humps.",
"answer": "False (the humps store fat, which can be metabolized into water and energy)"
},
{
"id": 149,
"category": "Geography",
"question": "Which U.S. state is known as the 'Sunshine State'?",
"answer": "Florida"
},
{
"id": 150,
"category": "Science",
"question": "What is the measurement unit for electrical resistance?",
"answer": "Ohm"
},
{
"id": 151,
"category": "Animals",
"question": "What is the largest type of deer?",
"answer": "Moose"
},
{
"id": 152,
"category": "Human Body",
"question": "True or False: The human brain is fully developed by age 18.",
"answer": "False (it continues to develop until the mid-20s)"
},
{
"id": 153,
"category": "Space",
"question": "Which dwarf planet was reclassified from being the ninth planet in our solar system?",
"answer": "Pluto"
},
{
"id": 154,
"category": "Food & Drink",
"question": "Saffron, the world's most expensive spice, comes from which part of a flower?",
"answer": "The stigma (of the crocus flower)"
},
{
"id": 155,
"category": "History",
"question": "The period of history known as the Dark Ages followed the fall of which empire?",
"answer": "The Western Roman Empire"
},
{
"id": 156,
"category": "Animals",
"question": "Which animal is known for being able to change its color to match its surroundings?",
"answer": "Chameleon"
},
{
"id": 157,
"category": "Geography",
"question": "What is the capital of Australia?",
"answer": "Canberra"
},
{
"id": 158,
"category": "Science",
"question": "True or False: Glass is a liquid.",
"answer": "False (it's an amorphous solid, though old window panes sometimes appear thicker at the bottom due to manufacturing or very slow flow over centuries)"
},
{
"id": 159,
"category": "Language",
"question": "What is the fear of long words called?",
"answer": "Hippopotomonstrosesquippedaliophobia (ironically)"
},
{
"id": 160,
"category": "Animals",
"question": "True or False: Frogs drink water through their skin.",
"answer": "True (through a process called osmosis)"
},
{
"id": 161,
"category": "Human Body",
"question": "What is the scientific name for the kneecap?",
"answer": "Patella"
},
{
"id": 162,
"category": "Technology",
"question": "What was the first item sold on eBay (then AuctionWeb)?",
"answer": "A broken laser pointer"
},
{
"id": 163,
"category": "Nature",
"question": "Which tree is known for its 'knees' that grow above water in swampy areas?",
"answer": "Bald Cypress"
},
{
"id": 164,
"category": "Animals",
"question": "What is the only continent where giraffes live in the wild?",
"answer": "Africa"
},
{
"id": 165,
"category": "Food & Drink",
"question": "True or False: Apples float in water because they are 25% air.",
"answer": "True"
},
{
"id": 166,
"category": "History",
"question": "Who was the first U.S. President to live in the White House?",
"answer": "John Adams"
},
{
"id": 167,
"category": "Space",