-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patharc_easy_test.jsonl
2376 lines (2376 loc) · 675 KB
/
arc_easy_test.jsonl
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": "Mercury_417466", "prompt": "Which statement best explains why photosynthesis is the foundation of most food webs?", "choices": ["Sunlight is the source of energy for nearly all ecosystems.", "Most ecosystems are found on land instead of in water.", "Carbon dioxide is more available than other gases.", "The producers in all ecosystems are plants."], "answer_idx": 0}
{"id": "Mercury_7081673", "prompt": "Which piece of safety equipment is used to keep mold spores from entering the respiratory system?", "choices": ["safety goggles", "breathing mask", "rubber gloves", "lead apron"], "answer_idx": 1}
{"id": "Mercury_7239733", "prompt": "Meiosis is a type of cell division in which germ cells divide to produce haploid cells. Where does meiosis occur?", "choices": ["brain cells", "bone cells", "muscle cells", "ovary cells"], "answer_idx": 3}
{"id": "NYSEDREGENTS_2015_4_8", "prompt": "Which characteristic describes the texture of a kitten's fur?", "choices": ["gray", "warm", "long", "soft"], "answer_idx": 3}
{"id": "Mercury_7037258", "prompt": "Which best describes the structure of an atom?", "choices": ["a lightweight core surrounded by neutral particles", "a massive core surrounded by negatively-charged particles", "a network of interacting positive and negative particles", "overlapping layers of neutral, positive, and negative particles"], "answer_idx": 1}
{"id": "CSZ20679", "prompt": "To express the distance between the Milky Way galaxy and other galaxies, the most appropriate unit of measurement is the", "choices": ["meter.", "kilometer.", "light-year.", "astronomical unit."], "answer_idx": 2}
{"id": "Mercury_182158", "prompt": "A student has just completed a laboratory activity. What is the last action that the student should perform before leaving the lab area?", "choices": ["wash hands", "turn off all equipment", "put away all glassware", "wash instruments and table tops"], "answer_idx": 0}
{"id": "Mercury_7216668", "prompt": "Students are investigating the effects of different fertilizers on plant growth. Which units would be best to measure the mass of the fertilizer used?", "choices": ["meters", "centimeters", "grams", "milligrams"], "answer_idx": 2}
{"id": "MCAS_2001_5_19", "prompt": "Plants use sunlight to make", "choices": ["soil.", "minerals.", "food.", "water."], "answer_idx": 2}
{"id": "Mercury_SC_413631", "prompt": "Which of these correctly identifies the way materials are transported in a plant?", "choices": ["Xylem carries water from the roots to the leaves.", "Phloem carries minerals from the roots to the leaves.", "Xylem carries sugars from the flowers to the stems.", "Phloem carries water from the flowers to the stems."], "answer_idx": 0}
{"id": "MCAS_2005_5_10", "prompt": "When trees develop leaves in the spring, 10 changes occur on the forest floor. Why does the development of leaves cause changes on the forest floor?", "choices": ["Rainfall increases.", "Sunlight is reduced.", "Wind speed increases.", "Animal migration is stopped."], "answer_idx": 1}
{"id": "Mercury_7166145", "prompt": "The circulatory system and the endocrine system work together in the human body. Which describes one way in which these systems interact?", "choices": ["taking in oxygen and transporting it to cells of the body", "releasing hormones and transporting them to cells of the body", "absorbing nutrients from food and transporting them to cells in the body", "collecting waste products from the cells and transporting it out of the body"], "answer_idx": 1}
{"id": "MSA_2013_5_6", "prompt": "A student throws a ball into the air. While the ball travels up, the speed of the ball decreases. What force causes the ball to slow while traveling up?", "choices": ["electricity", "gravity", "magnetism", "tension"], "answer_idx": 1}
{"id": "Mercury_SC_405199", "prompt": "Which of these will most likely harm a habitat?", "choices": ["planting trees", "water pollution", "rainfall", "sunlight"], "answer_idx": 1}
{"id": "NYSEDREGENTS_2015_8_28", "prompt": "All living and nonliving material is composed of", "choices": ["air", "elements", "water", "soil"], "answer_idx": 1}
{"id": "Mercury_SC_401777", "prompt": "Which process best explains how the Grand Canyon became so wide?", "choices": ["folding", "erosion", "deposition", "sedimentation"], "answer_idx": 1}
{"id": "Mercury_7198188", "prompt": "As global temperatures increase, certain organisms will be more affected than others. The changes associated with global warming may result in an increase in sea level. Which organisms will be affected most as a result of the change in sea level?", "choices": ["birds that eat fish from shallow waters", "fish that live in coral reefs in shallow waters", "mammals that swim in cold, deep ocean waters", "crustaceans at the bottom of deep sea ocean waters"], "answer_idx": 1}
{"id": "MCAS_1998_4_11", "prompt": "A dish of sugar water was left on a window sill. One week later, there were only sugar crystals left in the dish. The water was gone. The best explanation for the appearance of sugar crystals is", "choices": ["some of the water was absorbed by the dish.", "the air condensed.", "the light shining on the window sill produced more sugar.", "the water evaporated."], "answer_idx": 3}
{"id": "Mercury_SC_LBS10784", "prompt": "Using a softball bat to hit a softball is an example of using which simple machine?", "choices": ["pulley", "lever", "inclined plane", "wheel and axle"], "answer_idx": 1}
{"id": "Mercury_7033548", "prompt": "When an igneous intrusion comes into contact with surrounding rock, the surrounding rock will", "choices": ["erode.", "foliate.", "precipitate.", "recrystallize."], "answer_idx": 3}
{"id": "Mercury_7146195", "prompt": "A research scientist writes a paper on the initial regrowth of a forest after a fire has damaged the entire ecosystem. Which title would be best for the paper?", "choices": ["Primary Succession", "Stable Communities", "Climax Communities", "Secondary Succession"], "answer_idx": 3}
{"id": "NCEOGA_2013_8_36", "prompt": "Where do plants get most of the energy they need to live and grow?", "choices": ["water", "soil", "air", "sunlight"], "answer_idx": 3}
{"id": "Mercury_SC_415412", "prompt": "Which is a statement about climate?", "choices": ["The average temperature yesterday was 15\u00b0C.", "The temperature range today was 10\u00b0C to 20\u00b0C.", "The high temperature tomorrow will be 14\u00b0C.", "The average high temperature in May is 20\u00b0C."], "answer_idx": 3}
{"id": "Mercury_7126840", "prompt": "While on a movie set, a stuntman jumps off the roof of a building. As he falls toward an airbag, what is increasing?", "choices": ["gravity", "wind velocity", "kinetic energy", "potential energy"], "answer_idx": 2}
{"id": "Mercury_SC_408362", "prompt": "Jessica wants to see cells in an oak tree leaf. Which tool is best for Jessica to use to see the cells?", "choices": ["binoculars", "microscope", "reading glasses", "magnifying glass"], "answer_idx": 1}
{"id": "MDSA_2008_8_35", "prompt": "Biologists conduct investigations to learn about living organisms. Which method helps reduce bias during an investigation?", "choices": ["developing a hypothesis after collecting data in the investigation", "limiting the amount of background research before the investigation", "designing an investigation with repeated trials during the investigation", "obtaining other opinions concerning what should happen during the investigation"], "answer_idx": 2}
{"id": "NYSEDREGENTS_2015_8_21", "prompt": "Which factor is most likely to cause the number of rabbits living in an area to increase?", "choices": ["less water", "fewer predators", "lack of shelter", "limited food"], "answer_idx": 1}
{"id": "VASoL_2008_5_12", "prompt": "Seeds that remain inactive until the right conditions of light, water, and soil are present are called ___.", "choices": ["pollen", "dormant", "flowers", "recycled"], "answer_idx": 1}
{"id": "Mercury_SC_LBS10680", "prompt": "What allows a light bulb to give off light?", "choices": ["the current flowing through the wire to the light bulb", "the light bulb giving electrical energy to the battery", "the light bulb generating heat energy", "the battery pushing light through the wire"], "answer_idx": 0}
{"id": "MCAS_2003_5_3", "prompt": "What causes sound?", "choices": ["sunlight", "vibrations", "x-rays", "pitch"], "answer_idx": 1}
{"id": "VASoL_2010_5_18", "prompt": "Photosynthesis occurs in which of these organisms?", "choices": ["Sunflower plant", "Mushroom", "Sunfish", "Luna moth"], "answer_idx": 0}
{"id": "Mercury_7074900", "prompt": "In order for cells to grow at a normal rate, they must", "choices": ["take in light.", "be specialized.", "take in nutrients.", "be of similar size."], "answer_idx": 2}
{"id": "Mercury_SC_408762", "prompt": "Marshall learned that plants need a substance from the air to make their own food. What does a plant take from the air in the presence of sunlight?", "choices": ["carbon dioxide", "hydrogen", "nitrogen", "oxygen"], "answer_idx": 0}
{"id": "ACTAAP_2015_5_8", "prompt": "Antarctica is a continent at Earth's south pole. Fossils of tropical fern plants were discovered in Antarctica even though these plants do not grow there today. Which conclusion does the fossil evidence best support?", "choices": ["Millions of years ago, Antarctica was in a warmer location on Earth.", "Recently, a natural disaster killed all of the fern plants in Antarctica.", "Recently, birds stopped carrying the seeds of fern plants to Antarctica.", "Millions of years ago, Earth's south pole was much colder than it is today."], "answer_idx": 0}
{"id": "Mercury_7263008", "prompt": "Which two theories of Moon formation propose that much or all of the material comprising the Moon came from Earth?", "choices": ["The Fission Theory and The Coaccretion Theory", "The Coaccretion Theory and The Capture Theory", "The Fission Theory and the Giant Impact Theory", "The Capture Theory and the Giant Impact Theory"], "answer_idx": 2}
{"id": "MCAS_2000_4_29", "prompt": "When white, fluffy clouds appear in Massachusetts, the weather that day will MOST LIKELY be", "choices": ["fair.", "stormy.", "foggy.", "rainy."], "answer_idx": 0}
{"id": "CSZ_2008_5_CSZ10233", "prompt": "Plants and animals are composed of organic compounds. Which of the following are the common elements found in organic compounds?", "choices": ["iron, oxygen, nickel, copper.", "sodium, potassium, gold, hydrogen.", "helium, neon, argon, krypton.", "carbon, hydrogen, oxygen, nitrogen."], "answer_idx": 3}
{"id": "Mercury_7128660", "prompt": "New research uncovers information that proves that the data from an old theory is partially incorrect. What should the scientific community do about the old theory?", "choices": ["remove the old theory from historical records", "change the research notes in the original theory", "use the new information to update the old theory", "ban the public from discussing the old theory"], "answer_idx": 2}
{"id": "Mercury_7100520", "prompt": "Which is the greatest benefit of sexual reproduction?", "choices": ["capable of reproducing by meiosis", "ability to reproduce without a mate", "ability to produce genetically different offspring", "capable of producing offspring genetically identical to parent"], "answer_idx": 2}
{"id": "Mercury_7017728", "prompt": "The speed at which sound waves travel depends on the", "choices": ["distance between the vibration source and the receiver.", "type of material through which the sound travels.", "size of the object making the sound.", "type of device making the sound."], "answer_idx": 1}
{"id": "Mercury_7032865", "prompt": "Which scientist is credited with discovering the first four moons of Jupiter?", "choices": ["Galileo Galilei", "Albert Einstein", "Charles Darwin", "Sir Isaac Newton"], "answer_idx": 0}
{"id": "Mercury_405057", "prompt": "During science class, a teacher explains that the samples the students are studying are made of two or more minerals. What are the students studying?", "choices": ["gases", "rocks", "elements", "molecules"], "answer_idx": 1}
{"id": "Mercury_7057593", "prompt": "When the Northern Hemisphere is tilted away from the Sun causing the rays of light to hit Earth at large angles, which season occurs?", "choices": ["winter", "spring", "summer", "fall"], "answer_idx": 0}
{"id": "Mercury_SC_405231", "prompt": "A scientist found fossils of ocean shells on a mountain top. Based on this find, which statement can be made?", "choices": ["The climate was once colder.", "The shells were carried by the wind.", "The mountain was covered by water.", "The shells once lived on dry land."], "answer_idx": 2}
{"id": "VASoL_2007_5_38", "prompt": "A student sees many plants around a pond. The student can determine which plants are nonvascular by", "choices": ["observing if they lack true stems, roots, or leaves", "examining the plants for spores", "counting the number of leaves on each stalk", "noticing if the plants are near rocks"], "answer_idx": 0}
{"id": "Mercury_SC_410895", "prompt": "Darryl learns that freezing temperatures may help cause weathering. Which statement explains how freezing temperatures most likely cause weathering?", "choices": ["by freezing the leaves on trees", "by causing rocks to stick together", "by turning acid rain into acid snow", "by freezing water in the cracks of rocks"], "answer_idx": 3}
{"id": "Mercury_7015978", "prompt": "A bond is formed when an electron is transferred from a sodium atom to a chlorine atom. What happens to the sodium atom during this process?", "choices": ["The mass of the atom increases.", "The atom becomes an isotope.", "The atomic number decreases.", "The atom becomes a positive ion."], "answer_idx": 3}
{"id": "ACTAAP_2010_5_5", "prompt": "A group of fish was released into a local lake. This species of fish had never lived in the lake before. Scientists want to collect data on how the lake's ecosystem is affected by the new fish. Which method of data collection will give the most accurate results?", "choices": ["Measuring oxygen levels in the lake for two months", "Checking the lake water for nutrient levels on one day", "Sampling fish populations in the lake over several years", "Observing the surface of the lake for signs of the new fish after one week"], "answer_idx": 2}
{"id": "Mercury_7080955", "prompt": "On a career day at school, an X-ray technician discusses her daily work with the class. Which equipment would she most likely say she uses on a regular basis to help ensure the safety of patients?", "choices": ["earplugs", "rubber gloves", "goggles", "lead aprons"], "answer_idx": 3}
{"id": "ACTAAP_2009_5_4", "prompt": "In the United States, windmills have been used for farming for hundreds of years. Which simple machine is the most important part of a windmill?", "choices": ["lever", "pulley", "inclined plane", "wheel and axle"], "answer_idx": 3}
{"id": "Mercury_7017010", "prompt": "Which tools are needed to measure the effects of friction on a block of wood?", "choices": ["meter stick, spring scale", "balance, stopwatch", "balance, meter stick", "meter stick, stopwatch"], "answer_idx": 0}
{"id": "Mercury_7146108", "prompt": "Planets outside of our solar system have been detected. What suggested the presence of a planet outside of our solar system?", "choices": ["radio wave emissions", "a wobble in the rotation of the star", "regular occurring eclipses of its moons", "the discovery of a star as large as our own"], "answer_idx": 1}
{"id": "NYSEDREGENTS_2012_4_12", "prompt": "During which process are pieces of rock material being moved over Earth's surface by water and wind?", "choices": ["conduction", "deposition", "erosion", "revolution"], "answer_idx": 2}
{"id": "VASoL_2009_5_3", "prompt": "The Apollo 11 mission was able to retrieve samples of the Moon's surface because it was the first mission to have astronauts", "choices": ["land on the Moon", "orbit a planet", "return to Earth", "walk in space"], "answer_idx": 0}
{"id": "Mercury_SC_401253", "prompt": "A student mixes a teaspoon of sugar in a large glass of water. What happens to the sugar when it is mixed with the water?", "choices": ["It boils.", "It melts.", "It dissolves.", "It evaporates."], "answer_idx": 2}
{"id": "Mercury_7235953", "prompt": "Particle accelerators, such as the Large Hadron Collider in Europe, accelerate subatomic particles to great speeds. These particles move in opposite directions at nearly the speed of light and collide into one another to simulate conditions that were present as the universe formed. Which property of matter in the initial moments of the universe are these accelerators designed to simulate?", "choices": ["low density", "high energy", "massive nuclei", "circular movement"], "answer_idx": 1}
{"id": "Mercury_403974", "prompt": "A doorbell circuit converts electrical energy into mechanical energy. The mechanical energy is in the form of vibrations that ultimately produce", "choices": ["chemical energy.", "thermal energy.", "radiant energy.", "sound energy."], "answer_idx": 3}
{"id": "Mercury_7241063", "prompt": "Which factor determines if two individuals are members of the same species?", "choices": ["They live in the same habitat and niche.", "They forage and eat the same type of food.", "They mate and produce fertile offspring.", "They are similar in appearance and color."], "answer_idx": 2}
{"id": "MCAS_2010_8_12015", "prompt": "Which of the following planets is always closer to the Sun than it is to Earth?", "choices": ["Jupiter", "Mercury", "Saturn", "Uranus"], "answer_idx": 1}
{"id": "Mercury_7168350", "prompt": "Cells need nutrients for energy. Which system is responsible for breaking down food to provide cellular energy?", "choices": ["digestive", "excretory", "circulatory", "respiratory"], "answer_idx": 0}
{"id": "Mercury_SC_402980", "prompt": "During which activity should a student wear goggles?", "choices": ["writing a science report", "mixing baking soda with water", "measuring the length of a shadow", "examining a leaf with a microscope"], "answer_idx": 1}
{"id": "Mercury_417126", "prompt": "Bacillus thuringiensis (Bt) is a soil bacterium that is toxic to certain insects. Genes from this bacterium have been inserted into cotton to make Bt cotton. Farmers that use Bt cotton would most likely use less of which of the following?", "choices": ["water", "fertilizer", "herbicide", "insecticide"], "answer_idx": 3}
{"id": "NYSEDREGENTS_2010_8_2", "prompt": "A student examined a rock sample and described it as having particles of various colors that were 1 millimeter to 12 millimeters in size. The student was making", "choices": ["an inference", "a hypothesis", "a prediction", "an observation"], "answer_idx": 3}
{"id": "NYSEDREGENTS_2010_8_13", "prompt": "What are genes composed of?", "choices": ["offspring", "DNA", "cells", "traits"], "answer_idx": 1}
{"id": "Mercury_177223", "prompt": "In a classroom demonstration, a teacher pours sulfuric acid on some granulated sugar in a beaker. The sugar turns yellow and then black. Smoke rises and a strong smell is released. This demonstration is an example of what kind of change?", "choices": ["chemical", "physical", "magnetic", "electric"], "answer_idx": 0}
{"id": "Mercury_7200533", "prompt": "Marta studied different forms of energy. Which two types of energy travel in waves?", "choices": ["light and sound", "electrical and sound", "chemical and light", "chemical and electrical"], "answer_idx": 0}
{"id": "Mercury_SC_400707", "prompt": "The tops of some mountains are sharp and pointed, while the tops of others are smooth and rounded. This difference was most likely caused by", "choices": ["rivers flooding along a coastal plain.", "erosion and weathering.", "earthquakes and waves.", "rocks melted underground by lava."], "answer_idx": 1}
{"id": "Mercury_SC_400380", "prompt": "A student suggests to the school board that they use a renewable energy source. The student suggests they use", "choices": ["coal.", "wind.", "wood.", "natural gas."], "answer_idx": 1}
{"id": "Mercury_7205590", "prompt": "Solar radiation provides more heat near the equator than near the poles on Earth. The greatest amount of heat is moved away from the equator by", "choices": ["ocean currents.", "aquatic plants.", "surface winds.", "tectonic plates."], "answer_idx": 0}
{"id": "NYSEDREGENTS_2015_4_30", "prompt": "Which human activity will help conserve Earth's natural resources?", "choices": ["leaving the television on all day", "recycling plastic bottles", "cutting down trees", "burning trash in the yard"], "answer_idx": 1}
{"id": "NYSEDREGENTS_2012_4_17", "prompt": "Which characteristic helps some animals defend themselves against predators?", "choices": ["strong odor", "poor hearing", "weak eyesight", "shivering"], "answer_idx": 0}
{"id": "VASoL_2008_3_5", "prompt": "Most plants begin their life cycle as ___.", "choices": ["leaves", "flowers", "roots", "seeds"], "answer_idx": 3}
{"id": "Mercury_SC_415390", "prompt": "Erin wants to make a strong, light chair. Which natural material should she use?", "choices": ["iron", "granite", "clay", "wood"], "answer_idx": 3}
{"id": "Mercury_SC_408436", "prompt": "Jonathon was studying bears. He found out that bears are born with some behaviors and learn others from their environment. Which behavior does a bear most likely inherit?", "choices": ["how to find food in garbage cans", "how to hibernate during the winter", "how to seek shelter in a hollow log", "how to live in human neighborhoods"], "answer_idx": 1}
{"id": "Mercury_SC_401143", "prompt": "A group of the same species of fish swim together to increase an individual's", "choices": ["swimming speed.", "body temperature.", "chance of survival.", "visibility to predators."], "answer_idx": 2}
{"id": "LEAP_2005_8_10403", "prompt": "In the oxygen cycle, which group of organisms replenishes a large portion of the atmospheric oxygen supply?", "choices": ["mammals", "fungi", "insects", "plants"], "answer_idx": 3}
{"id": "Mercury_7108045", "prompt": "Some antibiotics used to treat infections in humans are also used to treat chickens, but some groups oppose this practice. The overuse of the antibiotics will most likely influence the natural selection of which type of organisms?", "choices": ["chickens that naturally make the antibiotics", "microbes that are resistant to the antibiotics", "microbes that are susceptible to the antibiotics", "chickens that are resistant to infection"], "answer_idx": 1}
{"id": "Mercury_SC_402251", "prompt": "A student performs a lab investigation by measuring the average time it takes for a toy car to travel 10 meters. Why is it best to perform the experiment in three trials?", "choices": ["to form a good hypothesis", "to increase the accuracy of the results", "to make the results more significant", "to better explain the investigation to others"], "answer_idx": 1}
{"id": "Mercury_7071418", "prompt": "A scientist finds a metamorphic rock formation next to a magma chamber and determines that it was originally a sedimentary rock formation. He concludes that the temperature of the magma chamber caused the rock formation to become metamorphic. Which is another reliable explanation of how the rock formation was changed?", "choices": ["weight of heavy machinery moving over the rocks", "pressure on the rock formation inside Earth", "a sandstorm that caused the rocks to be eroded", "a quick burial of the rocks by tons of volcanic ash"], "answer_idx": 1}
{"id": "Mercury_SC_407370", "prompt": "Earth orbiting the Sun causes", "choices": ["the changing of the seasons.", "daily tidal cycles.", "day to become night.", "the phases of the Moon."], "answer_idx": 0}
{"id": "Mercury_7084595", "prompt": "The cycle of night and day on Earth is a result of", "choices": ["the Moon revolving around Earth.", "Earth revolving around the Sun.", "the Moon rotating on its axis.", "Earth rotating on its axis."], "answer_idx": 3}
{"id": "Mercury_7041335", "prompt": "Which of these traits is most influenced by environment?", "choices": ["weight", "hair color", "blood type", "handedness"], "answer_idx": 0}
{"id": "Mercury_7236320", "prompt": "Which statement describes a characteristic of a gas that has a significant effect on the climates of both Earth and Venus?", "choices": ["Nitrogen is chemically inert.", "Sodium vapor reflects solar energy.", "Carbon dioxide traps solar energy.", "Argon is unable to react with water."], "answer_idx": 2}
{"id": "LEAP__5_10308", "prompt": "DNA technology has improved greatly in the last twenty years. Which task has been made easier by the development of DNA technology?", "choices": ["identifying genetic disorders", "determining the parts of an atom", "observing distant objects in space", "making very accurate measurements"], "answer_idx": 0}
{"id": "Mercury_7068425", "prompt": "Which condition is necessary for metamorphic rocks to form?", "choices": ["constant weathering and erosion", "extreme pressure and heating", "rapid burial of sediments", "slow cooling of magma"], "answer_idx": 1}
{"id": "Mercury_SC_401308", "prompt": "Which event helps to renew a resource?", "choices": ["A seed is planted from a tree.", "An offshore rig pumps oil.", "A car is filled with gasoline.", "An office is heated with coal."], "answer_idx": 0}
{"id": "NYSEDREGENTS_2008_4_18", "prompt": "Which part of a plant takes in water and nutrients from the soil?", "choices": ["root", "stem", "flower", "leaf"], "answer_idx": 0}
{"id": "Mercury_7165550", "prompt": "A certain type of hybrid car utilizes a braking system in which energy is recovered and stored in batteries. This is an example of which type of energy conversion?", "choices": ["kinetic energy converted to potential energy", "chemical energy converted to kinetic energy", "chemical energy converted to thermal energy", "thermal energy converted to potential energy"], "answer_idx": 0}
{"id": "Mercury_7114923", "prompt": "Clownfish take shelter in the tentacles of sea anemones and keep sea anemones clean. Which type of relationship does this represent?", "choices": ["parasitism", "commensalism", "mutualism", "neutralism"], "answer_idx": 2}
{"id": "Mercury_SC_408434", "prompt": "Some animals have behaviors that help them find food when little is available. Which best describes an animal with this type of behavior?", "choices": ["a robin that builds a nest", "an owl that calls at night", "a duck that swims in water", "a goose that migrates in winter"], "answer_idx": 3}
{"id": "Mercury_7008453", "prompt": "Part of a student's experiment is to measure changes in wind speed several hours before a storm. What piece of equipment should the student use?", "choices": ["barometer", "hygrometer", "anemometer", "weather vane"], "answer_idx": 2}
{"id": "NYSEDREGENTS_2010_8_14", "prompt": "An organism is born with a genetic abnormality not present in any of its ancestors. This abnormality is most likely the result of", "choices": ["circulation", "competition", "mutation", "respiration"], "answer_idx": 2}
{"id": "NYSEDREGENTS_2015_8_24", "prompt": "The length of one day on Earth is determined by how long it takes", "choices": ["the Moon to revolve once", "the Moon to rotate once", "Earth to rotate once", "Earth to revolve once"], "answer_idx": 2}
{"id": "NYSEDREGENTS_2008_4_6", "prompt": "When a rock is placed in a graduated cylinder containing water, the height of the water will", "choices": ["decrease", "increase", "remain the same"], "answer_idx": 1}
{"id": "Mercury_400279", "prompt": "A student heats the same amount of two different liquids over Bunsen burners. Each liquid is at room temperature when the student begins. If liquid 1 has a higher specific heat than liquid 2, then liquid 1 will", "choices": ["evaporate sooner.", "take longer to increase in temperature.", "condense over a longer period.", "chemically break down at a faster rate."], "answer_idx": 1}
{"id": "Mercury_7092190", "prompt": "Through which activity do animals get the carbon that is needed for their bodies?", "choices": ["eating", "breathing", "running", "sleeping"], "answer_idx": 0}
{"id": "Mercury_7113890", "prompt": "Scientists have discovered organisms that thrive in hot water that is 90\u00b0C (194\u00b0F) and do not need sunlight or oxygen to live. Into which kingdom would the scientists classify these organisms?", "choices": ["Archaebacteria", "Fungi", "Plantae", "Protista"], "answer_idx": 0}
{"id": "TAKS_2009_8_17", "prompt": "A cook touches a hot stove and quickly moves his hand away. What are the two primary body systems that work together to produce this response?", "choices": ["Integumentary and endocrine systems", "Muscular and respiratory systems", "Nervous and muscular systems", "Skeletal and nervous systems"], "answer_idx": 2}
{"id": "AKDE&ED_2008_4_3", "prompt": "Which statement correctly describes both gases and liquids?", "choices": ["Their shapes stay the same in any container.", "Their shapes change when they are in different containers.", "Their volumes stay the same in any container.", "Their volumes change when they are in different containers."], "answer_idx": 1}
{"id": "Mercury_7202353", "prompt": "When the soil is saturated, earthworms move to the top of the soil to obtain oxygen. This behavior is evidence of which biological concept in earthworms?", "choices": ["learned behavior", "migration instinct", "response to stimuli", "reproductive strategy"], "answer_idx": 2}
{"id": "MCAS_2006_9_14", "prompt": "Which of the following is more likely to occur in a plant cell than in an animal cell?", "choices": ["synthesis of enzymes", "formation of cellulose", "breakdown of glucose", "active transport of ions"], "answer_idx": 1}
{"id": "MSA_2015_5_37", "prompt": "Earth revolves around the sun. The amount of time needed for Earth to complete one revolution around the sun is approximately", "choices": ["1 day", "28 days", "180 days", "365 days"], "answer_idx": 3}
{"id": "MDSA_2010_8_22", "prompt": "Excess nitrogen fertilizers sometimes drain into waterways that flow into the Chesapeake Bay. This nitrogen may cause algae blooms, which reduce dissolved oxygen in the water. How does nitrogen negatively affect the Chesapeake Bay?", "choices": ["fish births increase", "fish populations decrease", "sediment on the bottom of the bay decreases", "the rate of water runoff into the bay increases"], "answer_idx": 1}
{"id": "MCAS_1999_4_4", "prompt": "Mount Arenal, a volcano in Costa Rica, is erupting. Heat is being released during the eruption. What is the source of the heat?", "choices": ["The heat comes from the Sun.", "The heat comes from pools of underground water.", "The heat comes from deep within Earth.", "The heat comes from decaying plants and animals."], "answer_idx": 2}
{"id": "Mercury_7247923", "prompt": "Which statement describes how the umbilical cord supports a developing fetus?", "choices": ["It provides a protective barrier between the mother and the fetus.", "It keeps the fetus inside the mother until birth.", "It provides a navel when the baby is born.", "It supplies oxygen and nutrients to the fetus."], "answer_idx": 3}
{"id": "Mercury_SC_416124", "prompt": "Which two human body systems are most responsible for getting oxygen to cells?", "choices": ["digestive and skeletal", "skeletal and circulatory", "circulatory and respiratory", "respiratory and digestive"], "answer_idx": 2}
{"id": "Mercury_407530", "prompt": "In their science classroom, Sam and Julia cross a heterozygous tall (Tt) pea plant with a homozygous short (tt) pea plant. What ratio represents the results Sam and Julia can expect?", "choices": ["1 tall plant to 3 short plants", "2 tall plants to 2 short plants", "3 tall plants to 1 short plant", "4 tall plants to 0 short plants"], "answer_idx": 1}
{"id": "Mercury_7271740", "prompt": "When atmospheric carbon dioxide increases, some of the carbon dioxide dissolves in the ocean causing the ocean to become", "choices": ["warmer.", "cooler.", "more acidic.", "more alkaline."], "answer_idx": 2}
{"id": "Mercury_7026495", "prompt": "Over time, dried lava from an old volcano is worn down and broken into small pieces. When these pieces pile up and are cemented together to form new rock, how would this new rock be classified?", "choices": ["magma", "igneous", "sedimentary", "metamorphic"], "answer_idx": 2}
{"id": "Mercury_7084315", "prompt": "When potassium and bromine atoms form chemical bonds, which of these is produced?", "choices": ["an element", "a mixture", "a compound", "a new form of matter"], "answer_idx": 2}
{"id": "TIMSS_2011_4_pg51", "prompt": "How often does Earth rotate on its axis?", "choices": ["once every 12 hours", "once every 24 hours", "once every month", "once every year"], "answer_idx": 1}
{"id": "Mercury_7081148", "prompt": "The elements that make up the atmosphere of Earth can be listed as percentages or can be shown in a graph. Which type of graph would best show this information?", "choices": ["a bar graph", "a pie chart", "a line graph", "a scatterplot"], "answer_idx": 1}
{"id": "Mercury_SC_400040", "prompt": "Animals give off carbon dioxide that plants take in through leaves. What do plants give off as a result of photosynthesis that animals need to breathe?", "choices": ["heat", "oxygen", "protein", "water"], "answer_idx": 1}
{"id": "ACTAAP_2010_7_10", "prompt": "Air is composed of many different substances. Which of the following components of air is a compound rather than an element?", "choices": ["Argon, Ar", "Oxygen, O2", "Water, H2O", "Nitrogen, N2"], "answer_idx": 2}
{"id": "ACTAAP_2013_7_4", "prompt": "Which factor is responsible for the presence of equatorial deserts?", "choices": ["global warming", "asteroid impacts", "tilt of the Earth's axis", "the solar activity cycle"], "answer_idx": 2}
{"id": "Mercury_SC_405444", "prompt": "The ash borer moth looks similar to a wasp, but it does not have the ability to sting. This adaptation most likely helps the moth survive because", "choices": ["it makes food easier to find.", "predators avoid the moth.", "it aids in attracting a mate.", "the moth blends in with its surroundings."], "answer_idx": 1}
{"id": "Mercury_7213675", "prompt": "Which organ system communicates with cells in muscle tissue so that the muscles contract or relax, allowing the body to move?", "choices": ["circulatory system", "nervous system", "respiratory system", "excretory system"], "answer_idx": 1}
{"id": "MEA_2010_8_15-v1", "prompt": "Which device produces mechanical energy?", "choices": ["a battery", "an electric motor", "a light bulb", "a solar cooker"], "answer_idx": 1}
{"id": "Mercury_7094675", "prompt": "A beach is formed when sediment is deposited along a shoreline. What would most likely happen if rivers that empty into the ocean were dammed?", "choices": ["Less sediment would be deposited along the shoreline.", "Beaches would form from different materials.", "Sand dunes would become smaller.", "Deltas would become larger."], "answer_idx": 0}
{"id": "Mercury_403912", "prompt": "Due to extreme pressure, the inner core of Earth is", "choices": ["solid.", "liquid.", "gas.", "plasma."], "answer_idx": 0}
{"id": "Mercury_7009853", "prompt": "The speed and general direction of motion of a galaxy relative to the Earth can be determined by", "choices": ["measuring its red shift.", "the gravity it exerts.", "contrasting it against nearby stars.", "observing its motion across the sky."], "answer_idx": 0}
{"id": "Mercury_SC_LBS10020", "prompt": "What are the three common states of matter?", "choices": ["liquid, gas, vapor", "gas, liquid, fluid", "solid, gas, liquid", "solid, vapor, liquid"], "answer_idx": 2}
{"id": "MEA_2013_8_2", "prompt": "What is the primary reason for breaking down food molecules?", "choices": ["to absorb water into a cell", "to provide energy for a cell", "to remove wastes from a cell", "to store materials in a cell"], "answer_idx": 1}
{"id": "Mercury_7068688", "prompt": "Topsoil is considered to be most fertile when it has a", "choices": ["low pH level.", "low sand content.", "high organic matter level.", "high parent rock material level."], "answer_idx": 2}
{"id": "Mercury_7271705", "prompt": "When chemicals in the atmosphere dissolve in water droplets, they precipitate with the water and pollute water reservoirs on Earth. The pollutants enter the food chain when aquatic organisms absorb them. Which of these pollutants eventually contaminates fish after coal is burned?", "choices": ["lead", "arsenic", "mercury", "aluminum"], "answer_idx": 2}
{"id": "Mercury_402456", "prompt": "An atom has a mass of 24 and a nuclear charge of 12. Which statement about the atom is accurate?", "choices": ["It has twice as many protons as electrons.", "It has twice as many neutrons as protons.", "It has equal numbers of neutrons and protons.", "It has equal numbers of nuclear particles and electrons."], "answer_idx": 2}
{"id": "NCEOGA_2013_8_6", "prompt": "Which is an example of a renewable energy resource?", "choices": ["biomass", "coal", "gas", "oil"], "answer_idx": 0}
{"id": "Mercury_7230178", "prompt": "The compression of matter due to gravitational attraction increased as the protoplanets formed. What was a result of this compression within each protoplanet?", "choices": ["initiation of nuclear fusion", "increase in noble gas destabilization", "increase in thermal energy", "initiation of photosynthesis reactions"], "answer_idx": 2}
{"id": "Mercury_7215233", "prompt": "The construction of Hoover Dam on the Colorado River resulted in abundant freshwater and electrical power for the region. Which of these is a disadvantage of the construction of Hoover Dam?", "choices": ["an increase in flooding downstream", "an increase in regional humidity", "a decrease in the amount of river ecosystems", "a decrease in the amount of water for irrigation"], "answer_idx": 2}
{"id": "Mercury_SC_415535", "prompt": "If you place a thermometer into a glass of boiling water, what temperature should the thermometer read?", "choices": ["32\u00b0C", "100\u00b0C", "200\u00b0C", "212\u00b0C"], "answer_idx": 1}
{"id": "CSZ_2008_8_29", "prompt": "What characteristic of carbon [C] makes it essential to living organisms?", "choices": ["Carbon forms crystal structures under certain conditions.", "Carbon can exist as a solid, liquid, or gas.", "Carbon bonds in many ways with itself to form chains.", "Carbon exists in radioactive forms."], "answer_idx": 2}
{"id": "MSA_2012_5_28", "prompt": "Scientists found evidence of a fish that lived millions of years ago. The fish had features that were possibly used to move on land. This fish is now extinct. What scientific evidence did the scientists most likely find that confirmed the existence of this fish?", "choices": ["a fossil", "a description", "a photograph", "a cave drawing"], "answer_idx": 0}
{"id": "MCAS_2010_8_12008", "prompt": "What is the smallest unit of a chemical compound that still has the properties of that compound?", "choices": ["a nucleus", "a molecule", "an element", "an atom"], "answer_idx": 1}
{"id": "Mercury_SC_406724", "prompt": "A student is investigating in which type of soil a plant will grow best. Which should the student measure to answer the question?", "choices": ["height of the plants", "weight of the soil", "amount of water used", "temperature of the room"], "answer_idx": 0}
{"id": "TIMSS_2007_8_pg33", "prompt": "An animal has scales and uses only its lungs to exchange gases. What is the animal most likely to be classified as?", "choices": ["a fish", "a reptile", "a mammal", "an amphibian"], "answer_idx": 1}
{"id": "Mercury_7004988", "prompt": "How are igneous and sedimentary rocks similar?", "choices": ["They are both formed by erosion.", "They are both formed from cooled lava.", "Heat and pressure can turn them into lava.", "Heat and pressure can turn them into metamorphic rock."], "answer_idx": 3}
{"id": "Mercury_SC_LBS10946", "prompt": "When both a dominant and recessive gene are present, which of the following is true?", "choices": ["The dominant trait will be visible.", "The recessive trait will be visible.", "Neither trait will be visible.", "It cannot be predicted which trait will be visible."], "answer_idx": 0}
{"id": "TAKS_2009_8_39", "prompt": "Squirrels in cold climates gather and store food for winter. The squirrels sometimes bury nuts and then do not return for them. These nuts can grow to become trees. This chain of events is an example of", "choices": ["predation", "seed distribution", "competition", "seed fossilization"], "answer_idx": 1}
{"id": "Mercury_SC_408357", "prompt": "Kurt drinks frozen fruit juice from a small cup. He measures the amount of fruit juice in the cup. Which property is Kurt measuring?", "choices": ["density", "height", "temperature", "volume"], "answer_idx": 3}
{"id": "Mercury_178710", "prompt": "A simple machine that has a mechanical advantage equal to 1 would most likely be used to", "choices": ["decrease effort.", "decrease work.", "change direction.", "change resistance."], "answer_idx": 2}
{"id": "Mercury_410598", "prompt": "Roberto is sliding down a plastic slide on the playground. After he reaches the ground, he feels a small electric shock when he touches a piece of metal. What has been built up on his body that causes the shock?", "choices": ["atoms", "electrons", "neutrons", "protons"], "answer_idx": 1}
{"id": "TIMSS_2011_4_pg15", "prompt": "Plants grow best in soils that are rich in which of the following?", "choices": ["grains of sand", "lumps of clay", "layers of gravel", "decaying plants and animals"], "answer_idx": 3}
{"id": "Mercury_7217088", "prompt": "The rate of acceleration of an object is determined by the mass of the object and", "choices": ["the initial velocity of the object.", "the forces acting on the object.", "the direction of movement of the object.", "the change in kinetic energy of the object."], "answer_idx": 1}
{"id": "Mercury_7143360", "prompt": "Some aquifers are composed of limestone and dolomite. Which process increases the open spaces of the aquifer formation?", "choices": ["wave action", "wind erosion", "tensional faulting", "chemical weathering"], "answer_idx": 3}
{"id": "MCAS_2012_8_23645", "prompt": "Leather basketballs are made for indoor use on smooth surfaces. Rubber basketballs are made for use on many different surfaces. Which of the following properties of rubber makes it better than leather for use on many different surfaces?", "choices": ["Rubber is durable.", "Rubber is lightweight.", "Rubber is dark in color.", "Rubber is quickly produced."], "answer_idx": 0}
{"id": "LEAP__4_10228", "prompt": "On a field trip in a wooded area, you see a small, strange object. You wonder whether it is a live animal. The best way to find out is to observe the object to see if it", "choices": ["has an odor.", "has separate parts.", "can make a noise and has a lifelike color.", "carries out basic life functions."], "answer_idx": 3}
{"id": "MSA_2012_8_29", "prompt": "Ethanol is a type of alcohol made from plants. Sugarcane and corn, which are both used in foods such as cereals and breads, are used to make ethanol. Burning ethanol provides a clean source of energy because the products of ethanol are water and carbon dioxide. Therefore, mixing ethanol with gasoline reduces harmful waste products. In the 1970s, many Brazilians drove cars with engines that used an ethanol gasoline mixture. This alternative fuel conserved the limited supply of gasoline available at that time. In the 1990s, gasoline became cheaper than ethanol, and Brazilians returned to driving more gasoline-fueled cars. Recently, Brazilians started driving more cars that use an ethanol-gasoline mixture. Ethanol is a good alternative fuel because it", "choices": ["reduces air pollution", "increases biodiversity", "reduces sound pollution", "increases ozone emissions"], "answer_idx": 0}
{"id": "Mercury_SC_401774", "prompt": "A whistle produces a sound because blowing air in the whistle causes", "choices": ["the whistle material to shake.", "the air inside the whistle to vibrate.", "the air to be absorbed by the whistle.", "the air in the whistle to heat up and expand."], "answer_idx": 1}
{"id": "TIMSS_2003_4_pg14", "prompt": "Each year the Earth moves once around", "choices": ["Mars", "the Sun", "the Moon", "all the other planets"], "answer_idx": 1}
{"id": "ACTAAP_2008_7_13", "prompt": "According to Newton's first law of motion, what counteracts gravity to keep a satellite in orbit?", "choices": ["inertia", "energy", "friction", "magnetism"], "answer_idx": 0}
{"id": "Mercury_SC_416096", "prompt": "How do plants get water and minerals?", "choices": ["absorbed from the soil though the roots", "absorbed from the soil through the stem", "absorbed from the air through the flowers", "absorbed from the air through the leaves"], "answer_idx": 0}
{"id": "NYSEDREGENTS_2013_8_12", "prompt": "A cell's chromosomes contain", "choices": ["genes", "chlorophyll", "sperm", "eggs"], "answer_idx": 0}
{"id": "Mercury_7222845", "prompt": "Which of these events is an example of a change in climate?", "choices": ["Afternoon clouds form and block the sunlight.", "A series of tornadoes occurs over a one-week period.", "An overnight temperature drop causes frost to form.", "The average amount of annual precipitation decreases."], "answer_idx": 3}
{"id": "Mercury_SC_401166", "prompt": "Which object works best when reflecting light?", "choices": ["mirror", "camera", "binoculars", "eyeglasses"], "answer_idx": 0}
{"id": "LEAP_2005_4_10267", "prompt": "A wetland was drained to build a mall. Two years later, there were no more toads in that area. Why did the toads disappear?", "choices": ["The toads were destroyed by the construction equipment.", "The toads died because toads cannot breathe out of water.", "The toads were frightened and went into the woods.", "The toads go their food from the wetland ecosystem."], "answer_idx": 3}
{"id": "ACTAAP_2007_7_18", "prompt": "Which elements are found to the right of the zigzag line in the periodic table?", "choices": ["liquids", "metals", "metals and gases", "nonmetals and gases"], "answer_idx": 3}
{"id": "Mercury_7188370", "prompt": "Miranda learned how the human body carries out life functions. Which is the most basic level of organization in the human body?", "choices": ["an organ", "a system", "a tissue", "a cell"], "answer_idx": 3}
{"id": "MSA_2013_5_5", "prompt": "Pollutants, such as motor oil and gasoline, are sometimes leaked onto roads by vehicles. How do these pollutants most likely affect the environment?", "choices": ["Storms wash the pollutants into lakes and rivers.", "Animals become sick from licking the pollutants on the road.", "Animals get stuck in the pollutants when they cross the road.", "Winds blow the pollutants to the side of the road and harm the soil."], "answer_idx": 0}
{"id": "MCAS_2005_5_8", "prompt": "Which of the following objects is probably the most flexible?", "choices": ["a ceramic dish", "a wooden block", "a short steel rod", "a new rubber hose"], "answer_idx": 3}
{"id": "Mercury_184888", "prompt": "A student practicing for the outdoor track team begins to sweat. To what stimulus is the body responding?", "choices": ["an increase in heart rate", "an increase in body temperature", "an increase in oxygen demand", "an increase in breathing rate"], "answer_idx": 1}
{"id": "Mercury_7044188", "prompt": "What repeating cycle is responsible for the four seasons that occur on Earth?", "choices": ["rotation of the moon", "rotation of the Sun", "revolution of the sun in the galaxy", "revolution of the earth about the sun"], "answer_idx": 3}
{"id": "Mercury_7056875", "prompt": "Which of these systems functions to protect and support vital organs?", "choices": ["digestive", "skeletal", "nervous", "excretory"], "answer_idx": 1}
{"id": "Mercury_SC_400868", "prompt": "Which characteristic would best help a rabbit survive in snow?", "choices": ["short legs", "dim eyesight", "thick, white fur", "slow movement"], "answer_idx": 2}
{"id": "Mercury_SC_409142", "prompt": "Scientists are studying a pond. Which property can the scientists measure to understand the amount of energy held by the lake water?", "choices": ["the depth of the lake", "the color of the water", "the volume of the lake", "the temperature of the water"], "answer_idx": 3}
{"id": "Mercury_SC_408900", "prompt": "Russell wants to observe changes in nature over the next few months. What can a thermometer help Russell investigate?", "choices": ["rainfall amounts each week", "tiny organisms in pond water", "the high temperatures each day", "the amount of growth in a plant"], "answer_idx": 2}
{"id": "Mercury_SC_401624", "prompt": "The egg stage in the life cycle of a bird is most like which phase in the life cycle of certain types of flowers?", "choices": ["seed", "spore", "pollen", "immature flower"], "answer_idx": 0}
{"id": "Mercury_7188965", "prompt": "Peristalsis helps move nutrients through parts of the body by using wavelike contractions. In which system is the function used?", "choices": ["circulatory", "digestive", "endocrine", "nervous"], "answer_idx": 1}
{"id": "NCEOGA_2013_8_32", "prompt": "Which is the best way to help prevent the flu from becoming a pandemic?", "choices": ["getting a vaccination", "taking antibiotics", "eating fruits and vegetables", "washing hands often"], "answer_idx": 0}
{"id": "Mercury_7008208", "prompt": "Which theory states that the universe originated as a single mass?", "choices": ["Big Bang", "Steady State", "Astronomical", "Catastrophism"], "answer_idx": 0}
{"id": "Mercury_7092400", "prompt": "As two continental plates collide, the edges of the plates are crumpled and uplifted. Which of these landforms is most likely a result of this type of collision?", "choices": ["normal faults", "mountain ranges", "U-shaped valleys", "shield volcanoes"], "answer_idx": 1}
{"id": "Mercury_417462", "prompt": "During a walk in the woods, Mandy finds a plant structure that had fallen onto the trail. Mandy can tell the object contained seeds, and thinks it came from a flowering plant instead of a conifer. How can she determine if the object came from a flowering plant?", "choices": ["by looking for seed coats on the seeds", "by looking for wing-like structures on the seeds", "by looking for fruit tissue around the seeds", "by looking for young sporophytes inside the seeds"], "answer_idx": 2}
{"id": "Mercury_SC_401211", "prompt": "The esophagus, stomach, and small intestine are parts of which body system?", "choices": ["nervous", "digestive", "respiratory", "muscular"], "answer_idx": 1}
{"id": "Mercury_178605", "prompt": "Which of the following is a chemical property of silver?", "choices": ["malleable", "white metal", "conductor of heat", "reacts with nitric acid"], "answer_idx": 3}
{"id": "Mercury_SC_400364", "prompt": "If the climate in an area changed over time to become very cold, which change would most likely help a species living there to survive?", "choices": ["a thicker neck and longer tail", "a larger mouth and stronger jaws", "an increase in fur and fat", "an increase in height and speed"], "answer_idx": 2}
{"id": "NYSEDREGENTS_2008_8_15", "prompt": "A broken bone heals through the process of", "choices": ["adaptation", "mutation", "cell division", "chemical digestion"], "answer_idx": 2}
{"id": "ACTAAP_2015_5_7", "prompt": "Which is the best example of an object with kinetic energy?", "choices": ["a plate sitting on a table", "a bird perching in a tree", "a marble rolling down a ramp", "a dam holding back some water"], "answer_idx": 2}
{"id": "Mercury_7180618", "prompt": "Lions tend to prey on primary consumers like zebras and gazelles. If there were a sudden decline in a population of lions, which ecological imbalance would most likely occur in the habitat?", "choices": ["overgrazing", "eutrophication", "invasion by non-native species", "overproduction of greenhouse gases"], "answer_idx": 0}
{"id": "Mercury_415262", "prompt": "Which of the following could help to reduce a home heating bill in winter?", "choices": ["replacing wood doors with aluminum doors", "using more insulation in the walls of the home", "removing thick rugs and heavy curtains in the home", "painting the roof of the home white to reflect light"], "answer_idx": 1}
{"id": "Mercury_7200200", "prompt": "Elizabeth uses a specific type of whistle to call her dogs. The noise made by the whistle is heard by the dogs but cannot be heard by the human ear. Which statement best describes why humans cannot hear the sound made by the whistle?", "choices": ["The speed of the sound is too fast.", "The amplitude of the sound is too low.", "The frequency of the sound is too high.", "The wavelength of the sound is too long."], "answer_idx": 2}
{"id": "MDSA_2008_8_24", "prompt": "Use the information to answer the question. Over the last 150 years, the use of fossil fuels has increased, resulting in more carbon dioxide and other greenhouse gases in the atmosphere. Some scientists think that these atmospheric gases will result in global warming. Scientists have recorded data on global temperature changes and have predicted possible changes in sea level that may affect Maryland residents. Which action helps reduce global warming?", "choices": ["developing highways", "driving large vehicles", "using renewable power sources", "using electricity from coal burning power plants"], "answer_idx": 2}
{"id": "Mercury_185238", "prompt": "As members of a food web, humans are considered to be", "choices": ["producers.", "consumers.", "decomposers.", "scavengers."], "answer_idx": 1}
{"id": "MCAS_2015_8_6", "prompt": "Which of the following statements best describes the role of gravity in the formation of stars?", "choices": ["Gravity converts solid matter into gases and light energy.", "Gravity causes gases and dust particles to condense into spheres.", "Gravity cools gases and liquids until they become one solid mass.", "Gravity pushes rocks and dust particles outward from a dense center."], "answer_idx": 1}
{"id": "Mercury_7015663", "prompt": "What is the name of the process in which igneous, sedimentary, and metamorphic rocks are converted into one another in stages?", "choices": ["rock cycle", "erosion cycle", "magma cycle", "tectonic cycle"], "answer_idx": 0}
{"id": "Mercury_SC_LBS10174", "prompt": "What is happening when rocks are broken down by both physical and chemical changes?", "choices": ["weathering", "deposition", "condensation", "decomposing"], "answer_idx": 0}
{"id": "Mercury_7024780", "prompt": "In a laboratory procedure, students added sodium hydroxide crystals to a beaker of water and allowed the resulting solution to cool. Based on this information, which type of chemical process most likely occurred?", "choices": ["electrical", "energetic", "exothermic", "endothermic"], "answer_idx": 2}
{"id": "Mercury_SC_404975", "prompt": "Students are attempting to make a doorbell ring using some wire and a battery. What is needed to make the bell ring?", "choices": ["friction", "gravity", "a convection current", "an electrical circuit"], "answer_idx": 3}
{"id": "Mercury_7098928", "prompt": "Which concept was most likely modified due to the invention of the microscope?", "choices": ["size of subatomic particles", "composition of living things", "number of the moons of Jupiter", "formation of sedimentary rocks"], "answer_idx": 1}
{"id": "Mercury_416501", "prompt": "Which energy transformation occurs during active transport in a cell?", "choices": ["light energy -> chemical energy", "kinetic energy -> potential energy", "chemical energy -> mechanical energy", "mechanical energy -> electrical energy"], "answer_idx": 2}
{"id": "Mercury_SC_406012", "prompt": "The nervous system consists of the brain, spinal cord, and nerves that run throughout the entire body. Which of these is one function of the nervous system?", "choices": ["supports body posture", "controls body functions", "supplies the blood with oxygen", "carries blood to and from the heart"], "answer_idx": 1}
{"id": "Mercury_SC_407192", "prompt": "Which of these is most likely a result of using pesticides on farm crops?", "choices": ["rainfall levels could decrease", "air temperatures could increase", "water sources could become polluted", "caterpillars could become extinct"], "answer_idx": 2}
{"id": "Mercury_7239890", "prompt": "The biological selection of a particular allele for a trait to be passed to offspring has nothing do with the selection of the allele for another trait. Which of the following supports this statement?", "choices": ["law of independent assortment", "law of dominance", "law of segregation", "law of recessiveness"], "answer_idx": 0}
{"id": "Mercury_7282135", "prompt": "Air pollution can influence a person's quality of life. Which best identifies the influence of air pollution?", "choices": ["It is a behavioral influence.", "It is a genetic influence.", "It is an environmental influence.", "It is a dietary influence."], "answer_idx": 2}
{"id": "Mercury_184328", "prompt": "What information about stars can be learned by using a spectrometer?", "choices": ["chemical composition", "distance from Earth", "size", "speed"], "answer_idx": 0}
{"id": "ACTAAP_2007_7_22", "prompt": "Which is the function of the gallbladder?", "choices": ["store bile", "produce bile", "store digestive enzymes", "produce digestive enzymes"], "answer_idx": 0}
{"id": "MDSA_2010_8_43", "prompt": "When trees are removed from a tropical rain forest, other plants and animals are affected. Which statement identifies another change that will most likely occur when a rain forest habitat is destroyed?", "choices": ["Oxygen levels will increase.", "Carbon dioxide levels will increase.", "The temperature of Earth will decrease.", "The air pollution in the atmosphere will decrease."], "answer_idx": 1}
{"id": "Mercury_7044520", "prompt": "A student was given the volume and description of a substance and was asked to determine its density. What information is missing?", "choices": ["size", "mass", "boiling point", "melting point"], "answer_idx": 1}
{"id": "Mercury_SC_400518", "prompt": "A geologist found several types of seashell fossils in a rock layer. Which is the best conclusion about the rock layer?", "choices": ["The rock was once buried under a swamp.", "Water from a river washed across the rock.", "The rock was once sediment at the bottom of an ocean.", "Migrating animals dropped the seashell into the rock."], "answer_idx": 2}
{"id": "Mercury_7205573", "prompt": "All of the planets in the solar system formed at about the same time from a large cloud of gas and dust. How is Earth different from other planets in the solar system?", "choices": ["Earth has no natural satellites.", "Earth's atmosphere is composed of gases.", "Water is found in all three phases on Earth.", "Volcanoes release liquid rock onto Earth's surface."], "answer_idx": 2}
{"id": "Mercury_7222863", "prompt": "When light reflects off certain crystals in the atmosphere, effects called halos appear. Which substance in the atmosphere forms these crystals?", "choices": ["carbon dioxide", "oxygen", "sulfur dioxide", "water"], "answer_idx": 3}
{"id": "NYSEDREGENTS_2015_4_19", "prompt": "During which process do animals increase in size?", "choices": ["breathing", "growing", "shedding", "repairing"], "answer_idx": 1}
{"id": "Mercury_7121905", "prompt": "In what form do plants store the energy produced from sunlight?", "choices": ["radiant", "thermal", "chemical", "mechanical"], "answer_idx": 2}
{"id": "LEAP__4_10226", "prompt": "Carmine's mother drinks four cans of soft drink each day. After drinking the soft drinks, Carmine's mother should", "choices": ["throw the cans in the trash.", "send the cans to a landfill.", "take the cans to be recycled.", "crush the cans before putting them in the trash."], "answer_idx": 2}
{"id": "Mercury_7210018", "prompt": "A student observes different characteristics of a rock. Which observation best describes a fact about the rock?", "choices": ["It has a nice surface.", "It has an interesting shape.", "It is made of several layers.", "It feels warm when touched."], "answer_idx": 2}
{"id": "ACTAAP_2013_7_13", "prompt": "Xylem cells have very thick walls. They make up most of a tree trunk and its branches. What system in vertebrates provides the same function as the xylem cells in a tree?", "choices": ["the skeletal system", "the endocrine system", "the respiratory system", "the integumentary system"], "answer_idx": 0}
{"id": "MCAS_2014_8_11", "prompt": "At one station in a production line, a worker must drill a hole in each end of wooden boards. At the next station, another worker attaches two of the boards together using metal fasteners that fit in the holes. Which of the following processes will ensure that the wooden boards fit together with the fewest errors?", "choices": ["placing the parts on a conveyor belt to keep them moving quickly", "using a fixture to hold the boards in place as the holes are drilled", "inspecting the boards after they are attached to each other", "installing equipment to protect workers from debris"], "answer_idx": 1}
{"id": "OHAT_2007_5_12", "prompt": "A student places a ball on the ground and kicks it. The ball moves along the ground. Why does the ball move?", "choices": ["The kick decreases the weight of the ball.", "The kick applies a contact force to the ball.", "The kick decreases the force of gravity acting on the ball.", "The kick removes friction between the ball and the ground."], "answer_idx": 1}
{"id": "MCAS_2000_4_24", "prompt": "Why do identical twins usually look like each other?", "choices": ["They were born on the same day.", "They have the same kinds of interests.", "They inherited the same characteristics from their parents.", "They were taught the same kinds of things at home."], "answer_idx": 2}
{"id": "MCAS_1999_8_31", "prompt": "The process by which information is encoded, transmitted, stored, decoded, and retrieved is called", "choices": ["manufacturing technology.", "transportation technology.", "construction technology.", "communication technology."], "answer_idx": 3}
{"id": "Mercury_7212853", "prompt": "Elements are organized on the periodic table according to", "choices": ["electronegativity values.", "atomic mass.", "atomic number.", "the number of neutrons."], "answer_idx": 2}
{"id": "Mercury_400808", "prompt": "Chromium is characterized by a very high melting point. Use the Periodic Table of the Elements to identify which of these elements most likely has a similar melting point.", "choices": ["potassium", "manganese", "bromine", "krypton"], "answer_idx": 1}
{"id": "Mercury_404895", "prompt": "A scientist finds a plant and states that it is a new species. Which is the best way to verify that it is a new species?", "choices": ["develop a theory about the plant", "compare the plant to other plants", "observe the plant with a microscope", "determine the best growing conditions for the plant"], "answer_idx": 1}
{"id": "MCAS_2000_8_19", "prompt": "The bottom of the space shuttle is covered with ceramic tile. This material was chosen because it withstands", "choices": ["moisture.", "vibration.", "heat.", "light."], "answer_idx": 2}
{"id": "Mercury_415684", "prompt": "What is the effect of absorption of infrared light by human skin?", "choices": ["sunburn on the skin surface", "disinfection of the skin tissues", "feeling of warmth on the skin", "immediate death of skin cells"], "answer_idx": 2}
{"id": "Mercury_7068705", "prompt": "Some plants need to be in an environment where water drains easily. Which type of soil content will best benefit these plants?", "choices": ["sand", "shale", "clay", "silt"], "answer_idx": 0}
{"id": "MCAS_2011_5_17668", "prompt": "Which of the following statements best describes sandy soils?", "choices": ["Sandy soils allow water to drain quickly.", "Sandy soils easily break down into clay sediments.", "Sandy soils hold plant roots tightly in place to prevent erosion.", "Sandy soils have high levels of decomposed plant and animal matter."], "answer_idx": 0}
{"id": "Mercury_402332", "prompt": "What type of rock was the fossil most likely found in?", "choices": ["igneous", "volcanic", "sedimentary", "metamorphic"], "answer_idx": 2}
{"id": "Mercury_SC_400601", "prompt": "Which source produces light from nuclear energy?", "choices": ["the Sun", "a stove burner", "the Moon", "a light bulb"], "answer_idx": 0}
{"id": "VASoL_2009_5_27", "prompt": "A student rolls a ball on the ground. Which of these causes the ball to slow down and then stop?", "choices": ["The motion of the ball", "The speed of the ball", "Friction from the ground", "A magnetic field"], "answer_idx": 2}
{"id": "Mercury_7180705", "prompt": "In the human body, the circulatory system works with the respiratory system by", "choices": ["producing red blood cells.", "transporting oxygen to organs.", "providing nutrients to muscles.", "controlling the movement of the lungs."], "answer_idx": 1}
{"id": "Mercury_SC_406153", "prompt": "What kind of force do brakes use to stop a moving bicycle?", "choices": ["gravity", "friction", "magnetic", "push"], "answer_idx": 1}
{"id": "Mercury_SC_408919", "prompt": "The first powerful telescopes were built during the early 1600s. Scientists at that time were able to learn more about which subject by using the telescope?", "choices": ["the shape of continents of Earth", "the effect of storms and hurricanes", "forces changing the surface of Earth", "planets and moons in the solar system"], "answer_idx": 3}
{"id": "Mercury_7024745", "prompt": "A student wants to perform an experiment to determine what temperature is best for growing tomato plants. Which is the best piece of equipment to use in this experiment to measure the independent variable?", "choices": ["rain gauge", "light meter", "tape measure", "thermometer"], "answer_idx": 3}
{"id": "MDSA_2008_5_6", "prompt": "Glaciers are slow-moving sheets of ice found on land. What process occurs when glacial ice is heated to 5\u00b0 Celsius?", "choices": ["evaporation", "freezing", "melting", "precipitation"], "answer_idx": 2}
{"id": "Mercury_7090930", "prompt": "Land subsidence (ground level dropping) is most likely an indication that", "choices": ["sediments are being deposited.", "water is being polluted.", "rocks are being weathered.", "ground water is being depleted."], "answer_idx": 3}
{"id": "Mercury_7033373", "prompt": "The United States government limits the use of certain pesticides through laws passed in the Endangered Species Protection Program. Which is the most likely reason to enforce laws that limit pesticide use?", "choices": ["Some pesticides are expensive.", "Some pesticides fail to control insects.", "Some pesticides give off foul odors.", "Some pesticides can harm non-targeted species."], "answer_idx": 3}
{"id": "Mercury_SC_405219", "prompt": "Refrigerators were invented to keep food cold. This is helpful in", "choices": ["growing food.", "cleaning food.", "keeping food dry.", "keeping food fresh."], "answer_idx": 3}
{"id": "Mercury_SC_402238", "prompt": "What safety procedure should a student follow when a thermometer is broken during a lab experiment?", "choices": ["tell the teacher immediately", "stop the experiment immediately", "sweep the glass into a biohazard container", "use a paper towel to pick up the pieces"], "answer_idx": 0}
{"id": "Mercury_7215863", "prompt": "Which process is most effective for separating sodium chloride from a saltwater solution?", "choices": ["filtration", "evaporation", "magnetic separation", "chemical separation"], "answer_idx": 1}
{"id": "Mercury_7041300", "prompt": "Clear cutting of old growth forests in Oregon provides lumber for housing. In the process of clear cutting, plant diversity decreases and some organisms are pushed to extinction. Clear cutting is an example of", "choices": ["a change in aquatic conditions.", "a change in societal conditions.", "a change in atmospheric conditions.", "a change in environmental conditions."], "answer_idx": 3}
{"id": "Mercury_7190050", "prompt": "El Ni\u00f1o is a term that refers to the oceanic phenomenon in which the surface water temperatures increase. The increase in water temperature usually occurs in the tropical Pacific Ocean. Which will most likely occur as a result of this phenomenon to cause environmental changes?", "choices": ["melting of the polar ice caps", "varied atmospheric conditions", "an increase in volcanic eruptions", "an increase in the length of summers"], "answer_idx": 1}
{"id": "MCAS_1999_4_10", "prompt": "An animal that has thick fur, webbed feet, and blubber would probably live in the", "choices": ["Arctic Ocean.", "Amazon Rain Forest.", "Intracoastal Waterway, Florida.", "Mojave Desert, California."], "answer_idx": 0}
{"id": "Mercury_7222320", "prompt": "The rover Spirit is a robotic probe that NASA has placed on Mars. The gravitational attraction of Mars is approximately 62% less than that of Earth. Compared to its measurements on Earth, on Mars the probe has", "choices": ["the same weight and the same mass.", "a larger weight, but smaller mass.", "a smaller mass and larger weight.", "a smaller weight and the same mass."], "answer_idx": 3}
{"id": "MCAS_2006_8_25", "prompt": "Sal is looking at a map of Massachusetts. He has measured the distance, in inches, from Boston to Salem on the map. He wants to know how many actual miles the inches represent. What feature of the map should he look for?", "choices": ["key", "scale", "legend", "compass"], "answer_idx": 1}
{"id": "Mercury_7206605", "prompt": "A hammer and a screwdriver are next to each other in the sunlight. After one hour, the hammer is hotter than the screwdriver. The shape and mass of each object may affect the amount of heat each object gains. Another explanation for the difference in temperature may be that the hammer and screwdriver are", "choices": ["moving at different rates.", "made of different materials.", "used for different purposes.", "picked up in different ways."], "answer_idx": 1}
{"id": "Mercury_SC_408336", "prompt": "On January 15th, there were 10 hours and 24 minutes of daylight in Jacksonville, Florida. On the same day, there were only 9 hours and 37 minutes of daylight in New York City. Why did New York have fewer hours of daylight than Florida?", "choices": ["because Earth rotates", "because Earth tilts on its axis", "because gravity pulls Earth toward the Sun", "because the Moon reflects sunlight onto Earth"], "answer_idx": 1}
{"id": "Mercury_416579", "prompt": "A euglena has a flagellum and a paramecium has cilia. Both types of organelles help these organisms move through the water. However, a paramecium can also use its cilia to perform another task. What is this task?", "choices": ["obtain food", "defend the cell", "attach to a surface", "perform conjugation"], "answer_idx": 0}
{"id": "Mercury_7001575", "prompt": "Which characteristic of wolves is most likely learned?", "choices": ["fur color", "eyesight", "litter size", "social behavior"], "answer_idx": 3}
{"id": "Mercury_SC_416142", "prompt": "Which would most help pollinators find flowers that are pollinated at night?", "choices": ["shape", "color", "size", "fragrance"], "answer_idx": 3}
{"id": "MCAS_1998_8_19", "prompt": "A solar eclipse occurs when", "choices": ["the Moon blocks the Earth from the Sun.", "the first four planets in the solar system are aligned.", "Earth blocks the Moon from the Sun.", "Earth's shadow falls on the Sun."], "answer_idx": 0}
{"id": "Mercury_SC_400187", "prompt": "Which process turns a large rock into a pile of smaller stones?", "choices": ["deposition", "sedimentation", "fossilizing", "weathering"], "answer_idx": 3}
{"id": "TIMSS_2011_8_pg74", "prompt": "Where are the active volcanoes most likely to be found?", "choices": ["where rivers form", "where tectonic plates meet", "where oceans are deepest", "where land and water meet"], "answer_idx": 1}
{"id": "Mercury_7013458", "prompt": "During its lifetime, a star will evolve through several stages. In which stage does a star spend most of its life?", "choices": ["red giant", "red dwarf", "white dwarf", "main sequence"], "answer_idx": 3}
{"id": "CSZ30768", "prompt": "Which of the following elements is best able to combine with itself and hydrogen [H] to form large molecules?", "choices": ["sodium [Na]", "lithium [Li]", "sulfur [S]", "carbon [C]"], "answer_idx": 3}
{"id": "MCAS_2004_9_10", "prompt": "Which of the following is designed to transform an electromagnetic wave into a mechanical wave?", "choices": ["a portable radio", "a television screen", "a computer monitor", "a mercury thermometer"], "answer_idx": 0}
{"id": "AIMS_2009_4_25", "prompt": "Four students tried to find out which magnet was the strongest. They each shared one idea. Which idea shows scientific thinking?", "choices": ["We can pick the longest magnet.", "We can pick the heaviest magnet.", "We can measure the strength of the magnets.", "We can vote for the magnet that we think is the strongest."], "answer_idx": 2}
{"id": "Mercury_7221498", "prompt": "Energy is transferred in an electrical circuit through", "choices": ["static protons.", "moving protons.", "static electrons.", "moving electrons."], "answer_idx": 3}
{"id": "Mercury_7170853", "prompt": "The life cycle of a star includes formation, life, and death. In the Universe, where do new stars originate?", "choices": ["from fusion in red giants", "in molecular clouds of gas", "in radiation from black holes", "from large fragments of antimatter"], "answer_idx": 1}
{"id": "Mercury_7109690", "prompt": "What would be the initial result if a DNA molecule did not replicate accurately?", "choices": ["infertility of the organism", "incorrect protein synthesis", "increase in reproduction rate", "immediate death of the organism"], "answer_idx": 1}
{"id": "Mercury_SC_400525", "prompt": "Photosynthesis and respiration are both parts of which cycle?", "choices": ["carbon cycle", "nitrogen cycle", "phosphorous cycle", "rock cycle"], "answer_idx": 0}
{"id": "Mercury_SC_LBS10616", "prompt": "Earth is tilted as it travels around the Sun. The tilt changes the amount of energy each area gets from the Sun, which makes some months of the year warmer than others. What are the four main temperature changes in a year called?", "choices": ["seasons", "climate", "weather", "quarters"], "answer_idx": 0}
{"id": "MCAS_2000_4_21", "prompt": "If your hands are cold, you can warm them by rubbing them together. The heat energy that you produce is caused by", "choices": ["insulation.", "magnetism.", "friction.", "conduction."], "answer_idx": 2}
{"id": "MCAS_1999_8_9", "prompt": "Large amounts of industrial gases are released into the atmosphere every day. What happens to those gases?", "choices": ["They are broken down by ultraviolet light from the Sun.", "They are converted into nitrogen and oxygen.", "They rise through the atmosphere and go into outer space.", "They remain in the atmosphere for long periods of time."], "answer_idx": 3}
{"id": "Mercury_415265", "prompt": "In which way is a prokaryotic cell different from a eukaryotic cell?", "choices": ["A prokaryotic cell is larger.", "A prokaryotic cell has no nucleus.", "A prokaryotic cell can reproduce itself.", "A prokaryotic cell has a cell membrane."], "answer_idx": 1}
{"id": "AKDE&ED_2008_8_20", "prompt": "What is a primary role of decomposers in an ecosystem?", "choices": ["They eliminate matter by taking nitrogen from the ecosystem.", "They eliminate matter by taking phosphorus from the ecosystem.", "They cycle matter by returning carbon and other matter to the ecosystem.", "They cycle matter by returning oxygen and other matter to the ecosystem."], "answer_idx": 2}
{"id": "Mercury_415545", "prompt": "What chemical symbol represents the element copper?", "choices": ["C", "Co", "Cp", "Cu"], "answer_idx": 3}
{"id": "AIMS_2008_4_6", "prompt": "Meteorologists study weather. Which of the following should meteorologists know about?", "choices": ["types of fronts", "types of fossils", "types of circuits", "types of adaptations"], "answer_idx": 0}
{"id": "TIMSS_1995_8_L7", "prompt": "The crews of two boats at sea can communicate with each other by shouting. Why is it impossible for the crews of two spaceships a similar distance apart in space to do this?", "choices": ["The sound is reflected more in space.", "The pressure is too high inside the spaceships.", "The spaceships are traveling faster than sound.", "There is no air in space for the sound to travel through."], "answer_idx": 3}
{"id": "Mercury_SC_401161", "prompt": "Which liquid most likely contains a dissolved gas?", "choices": ["whole milk", "house paint", "mud puddle", "carbonated soda"], "answer_idx": 3}
{"id": "Mercury_7086765", "prompt": "Silica sand is a resource used in large volume in Nevada. This resource is used to make which product?", "choices": ["tar", "glass", "plastic", "electricity"], "answer_idx": 1}
{"id": "Mercury_183768", "prompt": "Which of these best describes the function of the skeletal system?", "choices": ["transports oxygen and nutrients throughout the body", "supports and protects tissues and organs", "removes harmful wastes from the cells of the body", "breaks down food into a form that cells can use"], "answer_idx": 1}
{"id": "TAKS_2009_5_6", "prompt": "A student wants to find out how many different kinds of birds are found in a park. In addition to a bird identification book, the student should use ___.", "choices": ["binoculars", "goggles", "a microscope", "a hand lens"], "answer_idx": 0}
{"id": "Mercury_7222775", "prompt": "Nevada mines produce greater quantities of a particular resource than any other state. What resource is produced from these mines?", "choices": ["zinc", "copper", "gold", "lead"], "answer_idx": 2}
{"id": "VASoL_2008_5_20", "prompt": "A student throws a ball. Which of these best describes the moving ball?", "choices": ["The ball has light energy.", "The ball has kinetic energy.", "The ball is transferring sound energy to the air.", "The ball is transferring light energy to the air."], "answer_idx": 1}
{"id": "MEA_2010_8_9-v1", "prompt": "During which process does genetic material come from two parents?", "choices": ["asexual reproduction", "photosynthesis", "respiration", "sexual reproduction"], "answer_idx": 3}
{"id": "Mercury_7268030", "prompt": "Which of these is a threat to the survival of an ecosystem?", "choices": ["predator-prey population cycles", "less biomass at higher levels of the food web", "a shrinking variety of animal and plant species", "competition among some consumer populations"], "answer_idx": 2}
{"id": "NYSEDREGENTS_2012_8_5", "prompt": "Which human organ system produces most of the hormones that regulate body functions?", "choices": ["digestive", "nervous", "muscular", "endocrine"], "answer_idx": 3}
{"id": "Mercury_7239138", "prompt": "The complex, three-dimensional structure of a protein is sensitive to heat because the structure is maintained by", "choices": ["hydrogen bonds.", "covalent bonds.", "Brownian motion.", "magnetic fields."], "answer_idx": 0}
{"id": "Mercury_SC_400662", "prompt": "A few types of birds live in the same ecosystem. Which of these characteristics would most likely affect how they compete with each other for food?", "choices": ["the types of nests they build", "the lengths of their tails", "the shapes of their beaks", "the colors of their feathers"], "answer_idx": 2}
{"id": "Mercury_414097", "prompt": "Most of the United States is a part of which tectonic plate?", "choices": ["Pacific Plate", "Eurasian Plate", "North American Plate", "South American Plate"], "answer_idx": 2}
{"id": "Mercury_7083598", "prompt": "At one time, scientists believed that living organisms came from nonliving objects. This theory was revised through", "choices": ["changes in popular belief.", "evidence from experiments.", "information published in books.", "advances in the scientific method."], "answer_idx": 1}
{"id": "MSA_2012_8_36", "prompt": "The human body is composed of different systems made of specialized cells, tissues, and organs. Each of these structures has a specific function that aids in the survival of the human species. What is the primary function of the excretory system?", "choices": ["to digest food", "to help in defense", "to eliminate waste", "to enable movement"], "answer_idx": 2}
{"id": "VASoL_2011_5_36", "prompt": "Which is the best tool for measuring the temperature of lake water?", "choices": ["Meter stick", "Balance", "Graduated cylinder", "Thermometer"], "answer_idx": 3}
{"id": "VASoL_2010_3_13", "prompt": "The teeth of a carnivore are MOSTLY -", "choices": ["pointed", "rounded", "wide", "flat"], "answer_idx": 0}
{"id": "Mercury_405141", "prompt": "Panels of solar cells are used to collect energy from the Sun and convert it into energy for use in homes. Into what type of energy is the solar energy converted?", "choices": ["chemical", "electrical", "geothermal", "hydroelectric"], "answer_idx": 1}
{"id": "Mercury_7026968", "prompt": "A student wants to estimate the number of dandelion plants growing in a field. He counts the number of plants in a 5 square meter section of the field. What other information should he obtain to make his estimate?", "choices": ["the total area of the field", "average rainfall in the area", "all the organisms living in the field", "energy and nutrient requirements of dandelions"], "answer_idx": 0}
{"id": "Mercury_7234395", "prompt": "Overuse of which water resource tends to cause land to subside?", "choices": ["ocean water", "aquifer water", "river water", "lake water"], "answer_idx": 1}
{"id": "Mercury_402535", "prompt": "Students are preparing to determine the boiling points of several aqueous solutions. In addition to proper lab attire, what devices or instruments will the students need to conduct this experiment?", "choices": ["hot plate, beaker, masking tape", "thermometer, hot plate, beaker", "matches, beaker, thermometer", "balance, hot plate, thermometer"], "answer_idx": 1}
{"id": "MDSA_2011_8_2", "prompt": "One solar day on Jupiter lasts only 9 hours and 50 minutes. What causes a solar day?", "choices": ["diameter of the planet", "rotational speed of the planet", "speed of a planet in orbit around the sun", "diameter of the orbit of a planet around the sun"], "answer_idx": 1}
{"id": "Mercury_7086783", "prompt": "The finest-grained soils are richest in", "choices": ["sand.", "humus.", "clay.", "iron."], "answer_idx": 2}
{"id": "Mercury_SC_405164", "prompt": "Wind and water are examples of renewable energy sources because", "choices": ["they will stop producing energy.", "they were formed millions of years ago.", "they are always available to produce energy.", "they take millions of years to start producing energy."], "answer_idx": 2}
{"id": "Mercury_7018340", "prompt": "Gregor Mendel contributed to the study of biology by the careful, objective study of", "choices": ["heredity.", "bacteria.", "pedigrees.", "environment."], "answer_idx": 0}
{"id": "Mercury_7240923", "prompt": "Which statement describes the most likely effect of transformation on bacteria such as E. coli?", "choices": ["Transformed bacteria express a new protein product.", "Transformed bacteria have multiple chromosomes.", "Transformed bacteria reproduce more quickly.", "Transformed bacteria become a new species."], "answer_idx": 0}
{"id": "Mercury_SC_401122", "prompt": "A metal pan will heat up quickly when placed over a gas or electric burner. The metal pan is a good", "choices": ["resistor.", "insulator.", "conductor.", "accelerator."], "answer_idx": 2}
{"id": "Mercury_7080465", "prompt": "Which is a fact rather than an opinion about earthquakes?", "choices": ["Earthquakes occur along fault lines.", "Earthquakes are worse than hurricanes.", "Earthquakes are bad for all local businesses.", "Earthquakes always cause major damage to homes."], "answer_idx": 0}
{"id": "ACTAAP_2014_7_4", "prompt": "Which statement best describes the development of a human embryo?", "choices": ["A single cell becomes many cells.", "Each cell has a different function.", "Many cells combine to form one cell.", "All the cells have the same function."], "answer_idx": 0}
{"id": "Mercury_7267540", "prompt": "Which of these natural disasters is least likely to cause major damage to a prairie ecosystem?", "choices": ["a flood", "a tornado", "a hurricane", "an earthquake"], "answer_idx": 3}
{"id": "Mercury_SC_406684", "prompt": "The life cycle of a beetle is similar to the butterfly. Which process changes the beetle from larva to adult?", "choices": ["molting", "migration", "photosynthesis", "metamorphosis"], "answer_idx": 3}
{"id": "Mercury_SC_401771", "prompt": "Which adaptation helps a bird fly?", "choices": ["larger feet", "bigger eyes", "longer beaks", "hollow bones"], "answer_idx": 3}
{"id": "Mercury_7228690", "prompt": "Scientists are able to correlate time and the amount of difference between homologous genes when studying the divergence of two species because scientists have reliable estimates for which value?", "choices": ["rate of genetic mutations", "survival benefit of specific genes", "pressure of selection on base pairs", "number of bases in species' genomes"], "answer_idx": 0}
{"id": "Mercury_7216720", "prompt": "Which of the following is a part of the process of sexual reproduction?", "choices": ["budding", "regeneration", "pollination", "fragmentation"], "answer_idx": 2}
{"id": "Mercury_7057785", "prompt": "Why are diseases transmitted through the bites of infected animals not considered contagious diseases?", "choices": ["The infected animals do not show symptoms.", "The person in direct contact is the only one infected.", "Humans do not become sick from animal diseases.", "The diseases are treatable with antibiotics."], "answer_idx": 1}
{"id": "Mercury_7236495", "prompt": "Scientists theorize that the original atmosphere of Earth was stripped away by the solar wind shortly after the formation of the planet. The Jovian planets are far enough from the Sun that the solar wind has less of an impact. Studies of the Jovian planets suggest the early atmosphere of Earth was mainly composed of which two gases?", "choices": ["oxygen and argon", "hydrogen and helium", "carbon dioxide and nitrogen", "sulfur dioxide and water vapor"], "answer_idx": 1}
{"id": "NYSEDREGENTS_2013_8_9", "prompt": "Which human body systems work directly together to allow locomotion?", "choices": ["circulatory, excretory, and respiratory", "circulatory, endocrine, and reproductive", "skeletal, muscular, and nervous", "skeletal, digestive, and respiratory"], "answer_idx": 2}
{"id": "MCAS_2000_8_24", "prompt": "Which is the best evidence for the theory of continental drift?", "choices": ["the appearance of volcanoes at the boundaries where plates collide", "earthquakes at boundaries where one plate slides past another", "cases where a species exists in only one isolated place", "fossils of the same species found on widely separated continents"], "answer_idx": 3}
{"id": "Mercury_SC_400298", "prompt": "Students go on a field trip to observe salmon spawning in a river. For safety reasons, the students should not", "choices": ["explore alone.", "listen to instructions.", "take notes.", "bring water."], "answer_idx": 0}
{"id": "Mercury_7026425", "prompt": "Which of the following involves a learned behavior?", "choices": ["laying eggs to reproduce", "having hollow, light-weight bones", "avoiding insects that taste bad", "having white feathers on the throat"], "answer_idx": 2}
{"id": "MCAS_2006_9_13-v1", "prompt": "Which of the following colors of visible light has the longest wavelength?", "choices": ["red", "blue", "green", "orange"], "answer_idx": 0}
{"id": "Mercury_SC_402084", "prompt": "Which is an example of a form of electrical energy?", "choices": ["lightning", "windmill", "radio waves", "sound waves"], "answer_idx": 0}
{"id": "Mercury_405595", "prompt": "Which of the following lists units of length from smallest to largest?", "choices": ["light-year, astronomical unit, kilometer, angstrom", "angstrom, kilometer, astronomical unit, light-year", "astronomical unit, angstrom, kilometer, light-year", "kilometer, angstrom, light-year, astronomical unit"], "answer_idx": 1}
{"id": "MDSA_2013_8_2", "prompt": "Each layer of Earth has different properties. Which statement best describes the mantle of Earth?", "choices": ["The mantle lies below the core.", "The mantle is composed of hot gases.", "The mantle lies between the core and the crust.", "The mantle temperature is lower than the crust temperature."], "answer_idx": 2}
{"id": "Mercury_7213868", "prompt": "Which of these is the best example of sexual reproduction?", "choices": ["binary fission", "budding", "fusing gametes", "fragmentation"], "answer_idx": 2}
{"id": "Mercury_416375", "prompt": "Which of these events during a storm at sea can add oxygen from the atmosphere to ocean water?", "choices": ["high winds", "lightning", "pressure change", "temperature change"], "answer_idx": 0}
{"id": "VASoL_2011_5_34", "prompt": "Which layer of Earth is the thinnest?", "choices": ["Inner core", "Crust", "Outer core", "Mantle"], "answer_idx": 1}
{"id": "Mercury_411731", "prompt": "Based on the Periodic Table of the Elements, which of these elements has properties most similar to calcium (Ca)?", "choices": ["carbon [C]", "barium [Ba]", "sodium [Na]", "manganese [Mn]"], "answer_idx": 1}
{"id": "TAKS_2009_8_24", "prompt": "As a river enters a larger body of water, sediments are deposited over a wide area. Which of these landforms is likely to be formed at the site of deposition?", "choices": ["Cave", "Mountain", "Delta", "Valley"], "answer_idx": 2}
{"id": "Mercury_7018060", "prompt": "Which of these is a chemical property of a material?", "choices": ["density", "flammability", "color", "brittleness"], "answer_idx": 1}
{"id": "Mercury_SC_402044", "prompt": "About how long is a lunar cycle?", "choices": ["1 day", "1 week", "28 days", "52 weeks"], "answer_idx": 2}
{"id": "Mercury_178938", "prompt": "Of the following types of cells, which has the highest concentration of mitochondria?", "choices": ["bone", "muscle", "nerve", "skin"], "answer_idx": 1}
{"id": "Mercury_SC_416166", "prompt": "What helps skin feel heat and pressure?", "choices": ["muscle cells", "blood cells", "nerve cells", "bone cells"], "answer_idx": 2}
{"id": "FCAT_2008_5_7", "prompt": "Erosion and weathering can both cause changes to the surface of Earth. Which of the following happens only because of erosion and NOT because of weathering?", "choices": ["Rocks form deep underground.", "Rocks become smooth and round.", "Rocks are broken apart into small pieces.", "Rocks are moved from one place to another."], "answer_idx": 3}
{"id": "ACTAAP_2013_7_15", "prompt": "Which is an advantage of sexual reproduction in the survival of a population?", "choices": ["prevents mutation", "maintains genetic diversity", "reduces the number of genes", "creates competition between siblings"], "answer_idx": 1}
{"id": "MCAS_8_2015_14", "prompt": "A species of moth in England has both a light-colored form and a dark-colored form. In the mid-1800s, the percentage of dark-colored moths increased in areas where black soot from factories covered the trees. The soot in these areas has decreased in more recent times as a result of pollution laws. Which of the following statements describes what has most likely happened to the moth populations in these areas?", "choices": ["The moth populations went extinct.", "The moth populations migrated south.", "The percentage of light-colored moths in the populations decreased.", "The percentage of dark-colored moths in the populations decreased."], "answer_idx": 3}
{"id": "MCAS_2004_5_32", "prompt": "Energy appears in many forms. What form of energy is lightning?", "choices": ["electrical energy", "mechanical energy", "magnetic energy", "sound energy"], "answer_idx": 0}
{"id": "Mercury_SC_401214", "prompt": "People take in and release gases from the air when they breathe. Which exhaled gas is a waste product of respiration?", "choices": ["oxygen", "helium", "hydrogen", "carbon dioxide"], "answer_idx": 3}
{"id": "Mercury_7074953", "prompt": "A unicellular organism is best described as being", "choices": ["a complex organism.", "a microorganism.", "an organism with specialized cells.", "an organism with different types of tissues."], "answer_idx": 1}
{"id": "MCAS_2008_5_5632", "prompt": "Which of the following best describes how plants use the energy they receive from sunlight?", "choices": ["They change water into heat.", "They produce their own food.", "They make minerals for their roots.", "They break down nutrients into rocks."], "answer_idx": 1}
{"id": "Mercury_400556", "prompt": "What can be inferred from a food product advertisement that claims \"30% less fat than our leading competitors\"?", "choices": ["It is a sugar-free product.", "It will help a person lose weight.", "It is the healthiest choice available.", "The fat content of the item is reduced."], "answer_idx": 3}
{"id": "NAEP_2009_4_S11+1", "prompt": "Which material is the best conductor of electricity?", "choices": ["Wood", "Metal", "Stone", "Plastic"], "answer_idx": 1}
{"id": "CSZ30263", "prompt": "A ball is dropped from the top of a tall building. As the ball falls, the upward force of air resistance becomes equal to the downward pull of gravity. When these two forces become equal in magnitude, the ball will", "choices": ["flatten due to the forces.", "fall at a constant speed.", "continue to speed up.", "slow to a stop."], "answer_idx": 1}
{"id": "MEA_2014_8_2", "prompt": "Which statement describes an interaction between the hydrosphere and the atmosphere?", "choices": ["Flowing water carves through rock to form a canyon.", "Lava from an underwater volcano cools to form a mountain.", "Ashes rise from a volcanic eruption to block sunlight.", "Water vapor rises from the ocean to form clouds."], "answer_idx": 3}
{"id": "Mercury_179200", "prompt": "Often organisms seem similar in their outward appearances. For example, a porpoise and a shark seem closely related, but they are not. Such similarity is the result of", "choices": ["convergent evolution.", "adaptive radiation.", "artificial selection.", "genetic equilibrium."], "answer_idx": 0}
{"id": "Mercury_SC_407706", "prompt": "A group of frogs live together near a small pond. The frogs compete with each other most for which resource?", "choices": ["air", "insects", "plants", "sunlight"], "answer_idx": 1}
{"id": "Mercury_7090755", "prompt": "Which process converts organic nitrogen into an inorganic form that can be used by plants?", "choices": ["decomposition", "sedimentation", "absorption", "radiation"], "answer_idx": 0}
{"id": "Mercury_406811", "prompt": "In animals, female traits are passed down to offspring from", "choices": ["sperm.", "seeds.", "pollen.", "eggs."], "answer_idx": 3}
{"id": "Mercury_7082670", "prompt": "The visible light spectrum can be subdivided according to", "choices": ["the types of waves.", "the sizes of particles.", "a range of colors.", "a type of energy."], "answer_idx": 2}
{"id": "Mercury_7124320", "prompt": "Three scientists conducted the same experiment to analyze the effectiveness of a cleaning agent on household bacteria. What is the main advantage of having the experiment repeated?", "choices": ["More bacteria will be destroyed.", "The results will be more reliable.", "A scientific journal will publish their work.", "The conclusion will lead to new discoveries."], "answer_idx": 1}
{"id": "Mercury_SC_409251", "prompt": "Today, almost all cars have seat belts. How does improving the design of seat belts help people the most?", "choices": ["It decreases the cost of cars.", "It increases the speed at which cars can travel.", "It decreases injuries to passengers in cars.", "It increases the comfort of passengers in cars."], "answer_idx": 2}
{"id": "MEA_2014_5_15", "prompt": "Which type of organism is made of one cell?", "choices": ["trees", "bacteria", "fern", "fish"], "answer_idx": 1}
{"id": "WASL_2003_5_8", "prompt": "At camp, Raj sees a lightning storm. He sees the lightning before he hears the thunder. What does this show?", "choices": ["Light moves faster than sound", "Light moves slower than sound", "Light and sound move at the same speed"], "answer_idx": 0}
{"id": "Mercury_7106610", "prompt": "What advantage do the offspring of a dandelion have by reproducing asexually?", "choices": ["Reproduction occurs rapidly.", "Reproductive competition is increased.", "Mating compatibility improves.", "Diversity increases between generations."], "answer_idx": 0}
{"id": "MCAS_2010_8_12012", "prompt": "Which of the following statements best describes a result of using interchangeable parts to manufacture automobiles?", "choices": ["The automobiles are identical.", "The automobiles wear out quickly.", "The automobiles are difficult to design.", "The automobiles can be produced on an assembly line."], "answer_idx": 3}
{"id": "MCAS_2010_8_12019", "prompt": "A stone arch bridge relies primarily on which of the following for its load strength?", "choices": ["bending", "compression", "tension", "torsion"], "answer_idx": 1}
{"id": "Mercury_7159425", "prompt": "After a storm, a hospital may have to rely on backup generators to power some equipment. Which is the energy conversion provided by the generators?", "choices": ["mechanical energy to electrical energy", "thermal energy to mechanical energy", "nuclear energy to mechanical energy", "thermal energy to electrical energy"], "answer_idx": 0}
{"id": "Mercury_192343", "prompt": "Many flowers attract bees. Bees consume nectar from the flower for energy. How does this interaction benefit the plant?", "choices": ["by increasing photosynthesis", "by pollinating it", "by limiting growth", "by reducing competition"], "answer_idx": 1}
{"id": "NYSEDREGENTS_2012_8_9", "prompt": "In living things, traits are passed on from one generation to the next by the transfer of", "choices": ["blood", "minerals", "Calories", "DNA"], "answer_idx": 3}
{"id": "Mercury_SC_405783", "prompt": "Every organism in an ecosystem receives energy from another source. Which of these organisms receives its energy directly from the Sun?", "choices": ["deer", "fungus", "grass", "hawk"], "answer_idx": 2}
{"id": "ACTAAP_2013_7_1", "prompt": "Aristotle taught that a force was always required to keep an object moving. Which of the following states what Newton believed?", "choices": ["Aristotle was correct.", "Aristotle was correct for objects on Earth but not in space.", "An object will keep moving unless an unbalanced force stops it.", "A moving object will eventually stop even though an unbalanced force keeps pushing on it."], "answer_idx": 2}
{"id": "MDSA_2008_8_13", "prompt": "The solar system containing Earth consists of a sun and planets. Which statement best describes the motion of the planets in our solar system?", "choices": ["The planets rotate around the sun.", "The sun rotates around the planets.", "The planets revolve around the sun.", "The sun revolves around the planets."], "answer_idx": 2}
{"id": "MDSA_2011_5_35", "prompt": "Animal wastes contain bacteria that make organisms sick. These wastes are often washed into water supplies by storms. How might a pet owner prevent these bacteria from polluting water supplies?", "choices": ["Brush the pet daily to remove bacteria.", "Feed pets food that produces less waste.", "Bag the pet waste and throw it in the trash.", "Wash the pet with shampoo to kill the bacteria."], "answer_idx": 2}
{"id": "MCAS_2005_8_17", "prompt": "Which of the following is performed by the quality control division of a company that is manufacturing a chair?", "choices": ["applying the varnish", "assembling the parts", "cutting the material", "inspecting the finish"], "answer_idx": 3}
{"id": "VASoL_2009_5_24", "prompt": "Which type of storm causes the most flooding in areas located near an ocean coastline?", "choices": ["Tornado", "Hurricane", "Blizzard", "Freezing rain"], "answer_idx": 1}
{"id": "LEAP_2008_4_10287", "prompt": "Anne and her father find a 30-million year-old tropical plant fossil in Louisiana. Which question does the fossil help them answer?", "choices": ["Were there mountains in Louisiana 30 million years ago?", "What was the climate like in Louisiana 30 million years ago?", "Were there earthquakes in Louisiana 30 million years ago?", "What kind of animals lived in Louisiana 30 million years ago?"], "answer_idx": 1}
{"id": "Mercury_192868", "prompt": "In the Four Corners area in the US Southwest, there are large rocky outcroppings of basalt. These were formed by ancient lava flows. Using this information, what class of rock is this?", "choices": ["metamorphic", "sedimentary", "igneous", "weathered"], "answer_idx": 2}
{"id": "MCAS_2004_8_22", "prompt": "The heath hen, an extinct small wild fowl, was a relative of the prairie chicken. Which of the following most likely caused extinction of the heath hen?", "choices": ["overhunting", "stable climate", "plentiful food supply", "abundant nesting sites"], "answer_idx": 0}
{"id": "Mercury_7013195", "prompt": "A stationary air mass over the Gulf of Mexico would typically be", "choices": ["warm and dry.", "warm and humid.", "cool and dry.", "cool and humid."], "answer_idx": 1}
{"id": "MCAS_2010_5_14", "prompt": "Which of the following metals will be attracted to a magnet?", "choices": ["copper", "gold", "iron", "silver"], "answer_idx": 2}
{"id": "Mercury_7220343", "prompt": "A student wants to create a drawing of the water cycle. Which image can the student use to represent water cycling through the atmosphere?", "choices": ["a cloud", "a stream", "a frozen lake", "a drop of dew"], "answer_idx": 0}
{"id": "TIMSS_1995_8_K16", "prompt": "Which is made with the help of bacteria?", "choices": ["Yogurt", "Cream", "Soap", "Cooking oil"], "answer_idx": 0}
{"id": "Mercury_SC_408031", "prompt": "Lamar learned that birds, mammals, and reptiles are all vertebrates. Which characteristic do all vertebrates share?", "choices": ["They all lay eggs.", "They all have feathers.", "They all have a backbone.", "They are all warm-blooded."], "answer_idx": 2}
{"id": "Mercury_7015925", "prompt": "Which of these is most likely to create large areas of land subsidence?", "choices": ["eruptions of volcanoes", "extraction of ground water", "global warming", "greenhouse effect"], "answer_idx": 1}
{"id": "Mercury_7085873", "prompt": "Which of the following best describes two atoms of oxygen that are chemically bonded to each other?", "choices": ["molecule", "compound", "solution", "mixture"], "answer_idx": 0}
{"id": "Mercury_7217035", "prompt": "If the climate in an area were to become much drier, which plant variation would be most advantageous to the survival of the species?", "choices": ["bigger branches", "larger flowers", "thicker leaves", "longer stems"], "answer_idx": 2}
{"id": "Mercury_7003728", "prompt": "Which form of energy is in firewood?", "choices": ["light", "sound", "kinetic", "potential"], "answer_idx": 3}
{"id": "TIMSS_2003_4_pg10", "prompt": "What covers most of the Earth's surface?", "choices": ["Water", "Bare rock", "Farm land", "Cities and towns"], "answer_idx": 0}
{"id": "Mercury_SC_401120", "prompt": "Which tool is best used to observe a soil sample?", "choices": ["camera", "compass", "hand lens", "telescope"], "answer_idx": 2}
{"id": "Mercury_407132", "prompt": "A student walks along a trail by a lake on a cool summer morning. Which statement is an observation the student could make?", "choices": ["Fog is rising from the lake.", "The water is too cold for swimming.", "The water is cold because it comes from melted snow.", "The temperature of the air is rising because the Sun is out."], "answer_idx": 0}
{"id": "Mercury_7074988", "prompt": "Eating food that is undercooked can lead to a disease that affects the digestive system. Which body part is directly affected by the disease?", "choices": ["intestines", "arteries", "nerves", "sinuses"], "answer_idx": 0}
{"id": "Mercury_7227798", "prompt": "Which property supports the hypothesis that eukaryotic mitochondria were once prokaryotic organisms?", "choices": ["They lack genetic material.", "They lack a mechanism of motility.", "They lack internal membrane-bound organelles.", "They lack a need for proteins in their life functions."], "answer_idx": 2}
{"id": "Mercury_SC_401827", "prompt": "Metals that easily transfer electricity are called", "choices": ["resistors.", "magnets.", "insulators.", "conductors."], "answer_idx": 3}
{"id": "Mercury_SC_401403", "prompt": "Animals and plants need oxygen to live. Oxygen is released in photosynthesis. Which cycle includes photosynthesis?", "choices": ["the carbon cycle", "the nitrogen cycle", "the water cycle", "the rock cycle"], "answer_idx": 0}
{"id": "MDSA_2010_5_19", "prompt": "The Statue of Liberty was built in France and then taken apart into 350 pieces for shipping. When the pieces arrived in New York, the statue was put together. Which statement describes the relationship between the mass of the 350 pieces and the mass of the whole statue?", "choices": ["The mass of the pieces is greater than the mass of the statue.", "The mass of the pieces is the same as the mass of the statue.", "The mass of the statue is greater than the mass of the pieces.", "The mass of the statue is not related to the mass of the pieces."], "answer_idx": 1}
{"id": "MEA_2014_5_12", "prompt": "Which statement describes the weather when water droplets in clouds become heavy and the temperature is 20\u00b0C (68\u00b0F)?", "choices": ["It is clear and breezy.", "It is raining.", "It is snowing.", "It is sunny and clear."], "answer_idx": 1}
{"id": "MSA_2012_5_22", "prompt": "Scientists use different tools during their investigations. What tool does a scientist use to study cells?", "choices": ["a balance", "a microscope", "a centimeter ruler", "a graduated cylinder"], "answer_idx": 1}
{"id": "Mercury_SC_407577", "prompt": "Snowy owls live in very cold areas. Which adaptation is most likely a result of living in this type of environment?", "choices": ["sharp claws", "curved beaks", "large, yellow eyes", "thick, white feathers"], "answer_idx": 3}
{"id": "Mercury_401760", "prompt": "Sodium bicarbonate (NaHCO_{3}) will neutralize stomach acid (HCl) in a double replacement reaction as follows: NaHCO_{3} + HCl -> NaCl + CO_{2} + \\Box What is the product necessary to make this reaction complete?", "choices": ["2HO", "HO_{2}", "H_{2}O_{2}", "H_{2}O"], "answer_idx": 3}
{"id": "NYSEDREGENTS_2015_8_33", "prompt": "Heat transfer by conduction occurs when molecules", "choices": ["flow as currents through liquids", "form waves that travel through space", "become less dense and rise", "collide with other molecules"], "answer_idx": 3}
{"id": "TIMSS_2007_8_pg34", "prompt": "The color of an object such as an apple is the same as the color the light waves", "choices": ["that travel through the object", "that are absorbed by the object", "that are reflected by the object", "that travel around the object"], "answer_idx": 2}
{"id": "Mercury_7090633", "prompt": "What causes the tectonic plates of Earth to continually move?", "choices": ["convection currents in the mantle", "volcanic and seismic activity in the crust", "strong winds and storms", "rotation of the solid core"], "answer_idx": 0}
{"id": "Mercury_404924", "prompt": "Which is the correct order in the process of sedimentary rock formation?", "choices": ["compaction, erosion, cementation, deposition", "compaction, weathering, erosion, cementation", "weathering, deposition, cementation, burial", "weathering, erosion, deposition, compaction"], "answer_idx": 3}
{"id": "Mercury_7218488", "prompt": "The discovery of tectonic plates and the cause of their movement is best described as a result of which scientific procedure?", "choices": ["direct observation of the important properties of the Earth system", "controlled laboratory experimentation on a simulation of geological systems", "methodical testing of a valid hypothesis statement", "inquiry into the causes of observed geological phenomena"], "answer_idx": 3}
{"id": "NYSEDREGENTS_2010_8_12", "prompt": "Cancer is most often the result of", "choices": ["abnormal cell division", "natural selection", "bacterial infection", "biological adaptation"], "answer_idx": 0}
{"id": "MDSA_2011_4_16", "prompt": "All organisms need food to survive. Which statement best describes the purpose of food for organisms?", "choices": ["Food provides skin color.", "Food provides oxygen for life.", "Food provides water for energy.", "Food provides energy for growth."], "answer_idx": 3}
{"id": "VASoL_2008_3_33", "prompt": "Soil is important to a forest because the soil ___.", "choices": ["stores sunlight in the leaves", "attracts insects that eat leaves", "provides nutrients to the trees", "warms the air around the trees"], "answer_idx": 2}
{"id": "Mercury_7247853", "prompt": "How do muscles and bones work together to create body movement?", "choices": ["The muscles pull on the bones.", "The muscles protect the bones.", "Muscles grow at the same rate as bones.", "Muscles send electrical impulses to bones."], "answer_idx": 0}
{"id": "Mercury_7094553", "prompt": "Biologists moved a predator from sea level to a higher altitude, where they noticed that the predator became tired more quickly. If this predator had to live at a higher altitude, which adaptation would be necessary for it to survive?", "choices": ["increased digestion rate", "growth of additional teeth", "reduction of respiration rate", "production of more red blood cells"], "answer_idx": 3}
{"id": "Mercury_SC_415492", "prompt": "Ernie made a diagram to model Earth's orbit. What shape is most like what Ernie drew for the orbit?", "choices": ["square", "oval", "triangle", "rectangle"], "answer_idx": 1}
{"id": "Mercury_7135853", "prompt": "Classification of galaxies is based on which characteristic?", "choices": ["the color of the galaxy", "the shape of the galaxy", "how many stars make up the galaxy", "how many planets make up the galaxy"], "answer_idx": 1}
{"id": "Mercury_400363", "prompt": "Which physical characteristic of a puppy is most likely inherited from its parents?", "choices": ["coat color", "desire to play fetch", "body weight", "ability to follow commands"], "answer_idx": 0}
{"id": "NYSEDREGENTS_2008_8_10", "prompt": "A scientist crosses two different varieties of corn to produce a single variety that has traits from both parents. This technique is an example of", "choices": ["competition", "natural selection", "selective breeding", "ecological succession"], "answer_idx": 2}
{"id": "Mercury_SC_415584", "prompt": "A class measures the time it takes for two different trucks to drive across the parking lot. How can they tell which truck is faster?", "choices": ["The truck that starts moving first is faster.", "The truck that takes less time is faster.", "The truck that has bigger tires is faster.", "The truck that takes more time is faster."], "answer_idx": 1}
{"id": "TIMSS_2003_4_pg12", "prompt": "The fossils of dinosaurs that lived millions of years ago can be found in", "choices": ["the water of oceans.", "the ice on ponds.", "the trunks of trees.", "rocks in the ground."], "answer_idx": 3}
{"id": "AIMS_2008_4_18", "prompt": "Which of the following contains salt water?", "choices": ["oceans", "raindrops", "groundwater", "polar icecaps"], "answer_idx": 0}
{"id": "Mercury_7246960", "prompt": "During digestion, fructose is produced by the breakdown of larger molecules. Which type of molecule could be broken down to increase the body's fructose levels?", "choices": ["proteins", "vitamins", "triglycerides", "carbohydrates"], "answer_idx": 3}
{"id": "Mercury_7217350", "prompt": "Which is the most important reason for scientists to publish their data and findings that result from a scientific investigation?", "choices": ["to become famous", "to get paid for their research", "to allow other scientists to try to replicate their results", "to gain respect from their peers in the scientific community"], "answer_idx": 2}
{"id": "Mercury_SC_402052", "prompt": "Which reflects light?", "choices": ["mirror", "camera", "telescope", "eyeglasses"], "answer_idx": 0}
{"id": "MCAS_2003_8_5", "prompt": "Which of the following is a necessary condition for a lunar eclipse to occur?", "choices": ["The Moon must be full.", "The Moon must be waxing.", "It must be the beginning of the month.", "It must be winter in the Northern Hemisphere."], "answer_idx": 0}
{"id": "Mercury_7015733", "prompt": "The excessive use of nitrogen-based fertilizers causes runoff that increases the nitrogen content of lakes and bays. These nitrogen compounds directly affect the aquatic ecosystems by", "choices": ["interfering with the water cycle.", "decreasing the predator population.", "increasing the rate of algae growth.", "causing aquatic animals to grow larger."], "answer_idx": 2}
{"id": "ACTAAP_2014_5_12", "prompt": "A blacksmith bends a metal rod into a round wheel. Which statement best describes the wheel?", "choices": ["The wheel weighs less than the rod.", "The wheel weighs more than the rod.", "The wheel is made of the same substance as the rod.", "The wheel is made of a different substance than the rod."], "answer_idx": 2}
{"id": "Mercury_7214428", "prompt": "Which moon phase occurs approximately 14 days after a full moon?", "choices": ["waxing gibbous", "waning crescent", "first quarter", "new moon"], "answer_idx": 3}
{"id": "Mercury_405465", "prompt": "After a person eats, the food is converted into energy by", "choices": ["muscles.", "tissues.", "bones.", "cells."], "answer_idx": 3}
{"id": "Mercury_7101518", "prompt": "Which statement best describes the primary role of perspiration in humans?", "choices": ["Perspiration rids the body of excess water.", "Perspiration eliminates bacteria from the skin.", "Perspiration opens skin pores to absorb more oxygen.", "Perspiration helps to maintain a stable body temperature."], "answer_idx": 3}
{"id": "NAEP_2005_8_S11+11", "prompt": "A person produces two sound waves with a flute, one immediately after the other. Both sound waves have the same pitch, but the second one is louder. Which of the following properties is greater for the second sound wave?", "choices": ["Frequency", "Amplitude", "Wavelength", "Speed in air"], "answer_idx": 1}
{"id": "Mercury_7005058", "prompt": "Why is the light year often used to describe distances between objects in the universe?", "choices": ["because of the way planets reflect light", "because of the great number of bright stars", "because of the way objects rotate and revolve", "because of the large distance between objects in space"], "answer_idx": 3}
{"id": "Mercury_7058503", "prompt": "Which organisms break down dead matter and recycle nutrients back into the ecosystem?", "choices": ["grasses and trees", "rabbits and deer", "lions and alligators", "mushrooms and bacteria"], "answer_idx": 3}
{"id": "NYSEDREGENTS_2015_8_2", "prompt": "A student viewing a cell with a microscope observes a cell wall, a cell membrane, and a nucleus. The presence of these structures indicates that the student is looking at a cell from a", "choices": ["rabbit", "carrot", "worm", "fly"], "answer_idx": 1}
{"id": "Mercury_407259", "prompt": "Which action results in a chemical change?", "choices": ["apples being cut into slices", "wood burning in a fireplace", "wet clothes drying on a clothesline", "snow being shoveled off of a sidewalk"], "answer_idx": 1}
{"id": "Mercury_7017798", "prompt": "What has occurred when bubbles form in a liquid that is being heated?", "choices": ["Oxygen is absorbed from the air.", "Heat is radiating in the liquid.", "The boiling point has been reached.", "Molecular stability in the liquid is increasing."], "answer_idx": 2}
{"id": "Mercury_7124128", "prompt": "The breakfast that a student ate provided energy for bicycling later in the day. Which energy transformation most likely occurred?", "choices": ["radiant to nuclear", "chemical to nuclear", "radiant to mechanical", "chemical to mechanical"], "answer_idx": 3}
{"id": "Mercury_SC_402258", "prompt": "In an experiment, water and salt are mixed together. What is the best way to separate the salt from the water?", "choices": ["filter the salt", "freeze the mixture", "evaporate the water", "pour the water out of the container"], "answer_idx": 2}
{"id": "TIMSS_2011_4_pg97", "prompt": "A metal spoon and a wooden spoon are used to stir a pot of hot soup. After a few minutes, the metal spoon feels hotter than the wooden spoon. What explains this?", "choices": ["Metal is always hotter than wood.", "Metal conducts heat better than wood.", "Metal conducts electricity better than wood.", "Metal heats up the water better than the wood."], "answer_idx": 1}
{"id": "Mercury_7162558", "prompt": "Materials made of the same substance will have characteristics in common. Which property is most likely to remain constant in different samples of the same material?", "choices": ["density", "mass", "shape", "volume"], "answer_idx": 0}
{"id": "Mercury_416414", "prompt": "Which is Earth's largest source of drinkable water?", "choices": ["lakes", "rivers", "oceans", "aquifers"], "answer_idx": 3}
{"id": "Mercury_SC_405081", "prompt": "Some classrooms have computers. The computer is most useful to the students because it helps them", "choices": ["play games.", "watch movies.", "listen to music.", "find information."], "answer_idx": 3}
{"id": "VASoL_2008_3_20", "prompt": "Which of these is an example of something being recycled?", "choices": ["Taking glass bottles to a place that makes them into new bottles", "Using the same foil to cover food several times", "Wrapping glasses with newspaper to put them in a moving box", "Carrying lunch to school every day in the same plastic bag"], "answer_idx": 0}
{"id": "Mercury_177345", "prompt": "Which of the following is an example of a compound?", "choices": ["copper", "iron", "carbon", "water"], "answer_idx": 3}
{"id": "Mercury_SC_408033", "prompt": "One rabbit runs faster than other rabbits in its population. How will the ability to run fast most likely benefit the rabbit?", "choices": ["by keeping the rabbit warmer in the winter", "by helping the rabbit blend with its environment", "by allowing the rabbit to find more sources of food", "by making it easier for the rabbit to escape from predators"], "answer_idx": 3}
{"id": "TIMSS_1995_8_I10", "prompt": "What is the BEST reason for including fruits and leafy vegetables in a healthy diet?", "choices": ["They have a high water content.", "They are the best source of protein.", "They are rich in minerals and vitamins.", "They are the best source of carbohydrates."], "answer_idx": 2}
{"id": "Mercury_415085", "prompt": "In one day, a family in a car rode for 2 hours, stopped for 3 hours, and then rode for another 5 hours. During the day, the family traveled a total distance of 400 kilometers. What was their average speed for the whole trip?", "choices": ["10 km/h", "20 km/h", "40 km/h", "50 km/h"], "answer_idx": 2}
{"id": "Mercury_416550", "prompt": "A Raleigh man turned on his kitchen faucet and filled a glass with water. When he looked at the water, he thought that it might not be safe to drink, so he called the water company to find out. What factor did the man use to evaluate the safety of the water?", "choices": ["pH", "turbidity", "nitrate concentration", "phosphate concentration"], "answer_idx": 1}
{"id": "Mercury_7137043", "prompt": "Which of these is the main source of the electromagnetic energy we use?", "choices": ["battery", "wind", "sun", "coal"], "answer_idx": 2}
{"id": "Mercury_7216633", "prompt": "Which of the following is the starting point for a new scientific investigation?", "choices": ["identifying experimental variables", "forming a question that is the basis of a hypothesis", "conducting repeated trials and graphing the data", "writing out a procedure and collecting the needed equipment"], "answer_idx": 1}
{"id": "Mercury_SC_408620", "prompt": "All organisms depend on the transfer of energy to survive. Which best shows the energy transfer between animals in a shoreline ecosystem?", "choices": ["Fish -> Plants -> Birds", "Plants -> Birds -> Fish", "Plants -> Fish -> Birds", "Fish -> Birds -> Plants"], "answer_idx": 2}
{"id": "ACTAAP_2009_7_5", "prompt": "Which investigation might be used to demonstrate potential energy?", "choices": ["Roll one ball toward another, and see what happens when they collide.", "Place a glass of water in the freezer, and see how long the water takes to become solid.", "Compress a spring by different amounts, and see how far it can launch a ball into the air.", "Roll a ball from the top of an inclined plane and determine the amount of time it takes to get to the bottom."], "answer_idx": 2}
{"id": "Mercury_SC_406674", "prompt": "The fossil record shows that trees have changed throughout the years. Which of the following conclusions would be best supported by the fossil record?", "choices": ["The environment has changed.", "Animals need leafy trees.", "Rocks can destroy trees.", "Trees give off oxygen."], "answer_idx": 0}
{"id": "Mercury_7099348", "prompt": "An agriculturalist predicts that the tomato harvest will be very good this year. Which has the greatest effect on the size of the tomato harvest?", "choices": ["the time of day the seeds are planted", "the amount of fruit picked after dark", "the type of soil in which the crops are grown", "the number of times daily that the farmer observes the crop"], "answer_idx": 2}
{"id": "Mercury_403937", "prompt": "A student investigates the effect of temperature on the distance a caterpillar travels in one minute. The student performs the investigation at four different times of day using one caterpillar. This experiment could be improved if the student", "choices": ["uses more than one caterpillar.", "performs the investigation on a wet surface.", "uses earthworms instead of caterpillars.", "performs the investigation at the same time on four days."], "answer_idx": 0}
{"id": "NYSEDREGENTS_2012_8_26", "prompt": "A bright object with a long tail of glowing gases is in orbit around the Sun. This object is most likely", "choices": ["a planet", "a star", "an asteroid", "a comet"], "answer_idx": 3}
{"id": "MCAS_8_2015_17", "prompt": "A hearing aid is a small device that contains an amplifier, a battery, a microphone, and a speaker. Which part of a hearing aid functions to detect sounds in the user's environment?", "choices": ["the amplifier", "the battery", "the microphone", "the speaker"], "answer_idx": 2}
{"id": "Mercury_7228393", "prompt": "In an experiment studying phototropism, students grew bean plants in labeled cardboard milk cartons. Afterward, the plants and soil were properly discarded. Which instruction line BEST conserves the remaining resources?", "choices": ["recycle the markers, reuse the milk cartons", "reuse the markers, discard the milk cartons", "discard the markers, reuse the milk cartons", "reuse the markers, recycle the milk cartons"], "answer_idx": 3}
{"id": "Mercury_415745", "prompt": "How are electromagnetic waves different from other waves?", "choices": ["They have very short wavelengths.", "They transmit energy instead of matter.", "They can travel through a vacuum and through matter.", "They can change direction by reflection when they strike an object."], "answer_idx": 2}
{"id": "Mercury_SC_415338", "prompt": "The Sun releases light and heat energy that cause changes on Earth. How does the Sun's energy change water?", "choices": ["The energy makes liquid water freeze.", "The energy makes water vapor from liquid water.", "The energy makes clouds release rain.", "The energy makes water collect into puddles."], "answer_idx": 1}
{"id": "Mercury_7108238", "prompt": "In the 18th century, smallpox was a common and deadly disease. A country doctor, Edward Jenner, observed that patients working with cattle who contracted a mild disease called cowpox, never came down with the more serious smallpox. When Jenner obtained liquid from cowpox sores and injected it into healthy patients, they became immune to smallpox. What term best describes Jenner's treatment for smallpox?", "choices": ["vaccination", "gene therapy", "chemotherapy", "genetic engineering"], "answer_idx": 0}
{"id": "Mercury_177485", "prompt": "What is the name of a circuit in which the current splits at the junctions?", "choices": ["closed circuit", "parallel circuit", "series circuit", "short circuit"], "answer_idx": 1}
{"id": "Mercury_SC_405120", "prompt": "A coach is standing at the finish line of a race. He is holding a stopwatch. What is the coach most likely measuring with the stopwatch?", "choices": ["the time of day", "the distance of the race", "the time it took to run the race", "the number of steps taken by the runners"], "answer_idx": 2}
{"id": "MDSA_2009_8_25", "prompt": "A growing community relies on a nearby lake to provide fresh water for drinking and bathing. An increase in the use of fresh water will cause the lake to become", "choices": ["colder", "deeper", "larger", "smaller"], "answer_idx": 3}
{"id": "VASoL_2009_3_26", "prompt": "Which of these senses lets Dora know when a skunk has been close to her house?", "choices": ["Taste", "Touch", "Smell", "Hearing"], "answer_idx": 2}
{"id": "Mercury_7264180", "prompt": "In 2001, NASA launched a probe to investigate very low-energy radiation emitted when the universe began. What part of the electromagnetic spectrum does this probe observe and record?", "choices": ["infrared", "microwave", "ultraviolet", "visible"], "answer_idx": 1}
{"id": "Mercury_7004183", "prompt": "What electrical charge does a proton have in an atom?", "choices": ["+2", "+1", "-1", "-2"], "answer_idx": 1}
{"id": "Mercury_SC_LBS10026", "prompt": "Work is a product of force and distance. Which of the following is an example of work?", "choices": ["sitting at a desk", "pushing on a wall", "riding a bike", "reading a book"], "answer_idx": 2}
{"id": "NYSEDREGENTS_2015_8_20", "prompt": "All of the different organisms interacting in a pond make up", "choices": ["a community", "a population", "the water cycle", "the habitat"], "answer_idx": 0}
{"id": "Mercury_407359", "prompt": "If a lake is polluted, which organisms would most likely accumulate the highest concentration of contaminants?", "choices": ["bass", "minnows", "aquatic plants", "fish-eating birds"], "answer_idx": 3}
{"id": "AKDE&ED_2012_4_39", "prompt": "Sand is a type of soil that is made of very tiny pieces of material. Which process most likely forms sand?", "choices": ["the rotation of Earth", "the growth of animals", "the decay of large trees", "the weathering of rocks"], "answer_idx": 3}
{"id": "Mercury_7034790", "prompt": "What is needed to change ice into water?", "choices": ["air", "energy", "stirring", "chemicals"], "answer_idx": 1}
{"id": "Mercury_7194268", "prompt": "Stars form from nebulae of dust and gases. Depending on its properties, a star may become a red, yellow, white, or blue star. Which property determines this star type?", "choices": ["age", "location", "mass", "shape"], "answer_idx": 2}
{"id": "VASoL_2008_3_21", "prompt": "Which of these is MOST likely made from only one material?", "choices": ["A pencil", "A bicycle", "A paper clip", "A pair of shoes"], "answer_idx": 2}
{"id": "MCAS_2010_5_11981", "prompt": "Francis plugged a toaster into an electric outlet. He put a piece of bread in the toaster and turned the toaster on. While the toaster was on, it changed the electrical energy from the outlet into other forms of energy. Which form of energy toasted the bread?", "choices": ["chemical", "heat", "magnetic", "sound"], "answer_idx": 1}
{"id": "Mercury_SC_402241", "prompt": "A student measured liquid with a graduated cylinder. Which of the following units could be used to record the volume of the liquid?", "choices": ["pounds", "meters", "grams", "milliliters"], "answer_idx": 3}
{"id": "NYSEDREGENTS_2013_4_23", "prompt": "Which term is an example of a life process?", "choices": ["coloration", "camouflage", "migration", "reproduction"], "answer_idx": 3}
{"id": "CSZ40385", "prompt": "A student divides several cubes into two groups, based on whether or not each cube can float in later. What property is the student using to classify the cubes?", "choices": ["weight", "density", "conductivity", "mass"], "answer_idx": 1}
{"id": "MDSA_2007_8_4", "prompt": "Use The Periodic Table of the Elements and the information below to answer the question. Magnesium metal (Mg) is grayish-white in color and reacts actively with water. Fluorine (F2) is a greenish-yellow gas at room temperature and is a member of the halogen family. These two elements react to produce magnesium fluoride (MgF2), a chemical commonly used in making windows and lenses. According to the Periodic Table of the Elements, which element is most similar to magnesium (Mg)?", "choices": ["calcium (Ca)", "iodine (I)", "sodium (Na)", "sulfur (S)"], "answer_idx": 0}
{"id": "Mercury_405469", "prompt": "How do word processors on computers benefit most students?", "choices": ["It makes them understand how to write a good story.", "It helps them gather historical information.", "It exposes them to data that is hard to find.", "It allows them to edit papers quickly."], "answer_idx": 3}
{"id": "Mercury_SC_402036", "prompt": "Students observed that a diamond was able to scratch a piece of talc. What does this observation best support?", "choices": ["Diamonds have sharp edges.", "Talc is softer than diamonds.", "Diamonds are very valuable.", "Talc and diamonds are both minerals."], "answer_idx": 1}
{"id": "Mercury_7230423", "prompt": "Which was a main force driving extensive speciation when the environment became hospitable to life after the Permian mass extinction?", "choices": ["increase in available ecological niches", "increase of atmospheric oxygen to present levels", "increase in genetic diversity among surviving organisms", "increase in interbreeding between organisms of different species"], "answer_idx": 0}
{"id": "MCAS_2012_8_23649", "prompt": "Some types of bacteria can only live where oxygen is not present. These bacteria were well adapted to life on Earth over 2 billion years ago. Which of the following changes caused many of these bacteria to become extinct?", "choices": ["the slow movement of tectonic plates", "the varying temperatures of each season", "an increase in volcanic activity under the oceans", "an increase in the number of photosynthetic organisms"], "answer_idx": 3}
{"id": "Mercury_SC_416135", "prompt": "Which two are functions of flowers?", "choices": ["attract pollinators and make seeds", "make seeds and store food", "store food and take in water", "take in water and attract pollinators"], "answer_idx": 0}
{"id": "MEAP_2005_8_33", "prompt": "When soil becomes saturated during rainfall, excess water begins to collect on the surface. Downslope movement of this excess water to rivers, lakes, and streams is called", "choices": ["runoff.", "filtration.", "groundwater.", "condensation."], "answer_idx": 0}
{"id": "Mercury_415686", "prompt": "What type of energy is transmitted from the Sun to Earth through space?", "choices": ["heat energy", "kinetic energy", "electrical energy", "electromagnetic energy"], "answer_idx": 3}
{"id": "NCEOGA_2013_5_49", "prompt": "What is the cause of rising surface temperatures of the Pacific Ocean, drought in the western United States, and flooding on the Pacific coast of South America?", "choices": ["the Gulf Stream", "the jet stream", "La Ni\u00f1a", "El Ni\u00f1o"], "answer_idx": 3}
{"id": "Mercury_7027265", "prompt": "Use of nuclear fuel would most likely reduce human contributions to which environmental problem?", "choices": ["ozone thinning", "landfill creation", "shoreline erosion", "greenhouse heating"], "answer_idx": 3}
{"id": "MEAP_2004_8_48", "prompt": "What unit of measure should Jerry use to report the volume of a liquid?", "choices": ["degrees Celsius", "kilograms", "milliliters", "centimeters"], "answer_idx": 2}
{"id": "MCAS_2001_8_9", "prompt": "Use the information below to answer the question. Manufacturing uses many steps to change natural resources into products. Some of these steps change natural resources into industrial materials. These steps are called primary processes. All of the following are primary processes except", "choices": ["melting iron ore.", "producing lumber.", "molding plastic.", "crushing rock into gravel."], "answer_idx": 2}
{"id": "MCAS_2004_9_20", "prompt": "What part of a communication system converts binary codes in a computer into recognizable characters?", "choices": ["decoder", "encoder", "receiver", "transmitter"], "answer_idx": 0}
{"id": "NYSEDREGENTS_2013_8_27", "prompt": "Which geologic process occurs when the acid in precipitation dissolves certain types of rock?", "choices": ["faulting", "tilting", "weathering", "erupting"], "answer_idx": 2}
{"id": "Mercury_SC_400871", "prompt": "Water evaporates mostly from", "choices": ["land.", "snow.", "clouds.", "oceans."], "answer_idx": 3}
{"id": "Mercury_SC_408250", "prompt": "Robin compared the properties of some rocks. Which property did she most likely compare with a balance?", "choices": ["density", "mass", "temperature", "volume"], "answer_idx": 1}
{"id": "NYSEDREGENTS_2013_8_36", "prompt": "Because copper is a metal, it is", "choices": ["liquid at room temperature", "nonreactive with other substances", "a poor conductor of electricity", "a good conductor of heat"], "answer_idx": 3}
{"id": "Mercury_LBS10523", "prompt": "What process makes it possible for the nutrients from organic material to be added to soil?", "choices": ["weathering", "erosion", "decomposition", "succession"], "answer_idx": 2}
{"id": "Mercury_7044083", "prompt": "Why is it not a safe practice to place a fuel depot over an aquifer?", "choices": ["Aquifers are too high up in the mountains.", "The weight of the depot is too great over the aquifer.", "The fumes escaping from the fuel depot are explosive.", "If the fuel leaks, the water in the aquifer will become contaminated."], "answer_idx": 3}
{"id": "Mercury_402144", "prompt": "Look at the equation. 2H_{2} + O_{2} -> 2H_{2}O What does the equation show?", "choices": ["heat being added to oxygen", "helium mixing with oxygen", "heat combining with oxygen", "hydrogen and oxygen combining"], "answer_idx": 3}
{"id": "NCEOGA_2013_8_49", "prompt": "Which statement best describes the Law of Superposition?", "choices": ["Each sedimentary layer of rock represents 1,000 years of Earth's age, much like the rings of a tree.", "In undisturbed layers of sedimentary rock, the upper rock layers are older than the lower rock layers.", "In undisturbed layers of sedimentary rock, the lowest layers contain the older rocks.", "Rocks that form near volcanoes are older than surrounding rock."], "answer_idx": 2}
{"id": "NYSEDREGENTS_2015_4_12", "prompt": "Which object is the best conductor of electricity?", "choices": ["glass rod", "wooden stick", "plastic straw", "metal nail"], "answer_idx": 3}
{"id": "NYSEDREGENTS_2012_4_20", "prompt": "Green plants get the energy they need to make food from", "choices": ["water", "air", "soil", "sunlight"], "answer_idx": 3}
{"id": "Mercury_7068600", "prompt": "Which property of a mineral is most likely being tested when it is scratched with a nail?", "choices": ["color", "hardness", "cleavage", "luster"], "answer_idx": 1}
{"id": "MCAS_2004_5_14", "prompt": "Ricardo has an igneous rock in his rock collection. Where did this rock most likely form?", "choices": ["in a volcano", "on a forest floor", "on a coral reef", "at the bottom of a river"], "answer_idx": 0}
{"id": "Mercury_SC_409024", "prompt": "Animals get energy from eating food that comes from plants. Plants survive by taking in substances that are released by animals. What substance do animals release that plants take in?", "choices": ["carbon dioxide", "oxygen", "salt", "sugar"], "answer_idx": 0}
{"id": "Mercury_7007928", "prompt": "Which factor determines whether precipitation will be in the form of rain or snow?", "choices": ["wind", "humidity", "air pressure", "temperature"], "answer_idx": 3}
{"id": "Mercury_7038850", "prompt": "Which of these materials transfers heat energy quickest?", "choices": ["metal", "glass", "plastic", "wood"], "answer_idx": 0}
{"id": "Mercury_400598", "prompt": "Electrical wires are coated with a rubber or plastic because these materials are good", "choices": ["resistors.", "magnets.", "insulators.", "conductors."], "answer_idx": 2}
{"id": "Mercury_7239313", "prompt": "An increase in which ecosystem factor could cause a population decline in a bird species?", "choices": ["emigration", "immigration", "number of births", "amount of food"], "answer_idx": 0}
{"id": "Mercury_7011760", "prompt": "Twentieth-century research and development of vaccines significantly reduced the threat of", "choices": ["polio.", "stroke.", "diabetes.", "osteoporosis."], "answer_idx": 0}
{"id": "Mercury_7008785", "prompt": "The tendency of an element to react chemically is closely related to", "choices": ["the number of valence electrons.", "the ratio of protons to neutrons.", "how tightly atoms are packed.", "the number of neutrons in atoms."], "answer_idx": 0}
{"id": "Mercury_180863", "prompt": "Modern submarines have advanced atmosphere-control systems that enable submarine crews to stay below the surface of the ocean for months at a time. Which of the following also benefits from this technology?", "choices": ["architectural design", "pollution control", "fire prevention", "space exploration"], "answer_idx": 3}
{"id": "Mercury_7014560", "prompt": "Which pieces of equipment would be used to measure the density of a solution?", "choices": ["a ruler and a protractor", "a magnet and a thermometer", "a graduated cylinder and a balance", "an Erlenmeyer flask and a Bunsen burner"], "answer_idx": 2}
{"id": "Mercury_SC_405059", "prompt": "Gasoline is a nonrenewable energy resource used in most cars and trucks. Gasoline is made from which source?", "choices": ["oil", "hydrogen", "natural gas", "water vapor"], "answer_idx": 0}
{"id": "Mercury_179130", "prompt": "The average temperature of Earth's surface has increased approximately 1\u00b0C in the past century. Which of the following can best explain this increase in temperature?", "choices": ["higher levels of oxygen in the atmosphere", "lower levels of ozone in the atmosphere", "higher levels of carbon dioxide in the atmosphere", "lower levels of nitrogen in the atmosphere"], "answer_idx": 2}
{"id": "MCAS_2011_5_17671", "prompt": "The Sun is the largest body in the solar system. The Sun is a ___.", "choices": ["moon", "planet", "satellite", "star"], "answer_idx": 3}
{"id": "NYSEDREGENTS_2013_4_14", "prompt": "Which activity is a good health habit?", "choices": ["drinking alcohol", "exercising regularly", "sleeping only 5 hours daily", "smoking cigarettes"], "answer_idx": 1}
{"id": "NYSEDREGENTS_2012_8_6", "prompt": "The fur of the snowshoe rabbit changes to a lighter color in the winter. This allows the rabbit to blend in with its surroundings. This change is an example of", "choices": ["extinction", "competition", "biological adaptation", "ecological succession"], "answer_idx": 2}
{"id": "Mercury_SC_407227", "prompt": "What does a plant need to make sugar through photosynthesis?", "choices": ["soil, water, and oxygen", "oxygen, sunlight, and soil", "carbon dioxide, sunlight, and soil", "sunlight, water, and carbon dioxide"], "answer_idx": 3}
{"id": "NYSEDREGENTS_2008_4_27", "prompt": "Some birds fly south in the fall and return in the spring. This is an example of", "choices": ["migration", "camouflage", "hibernation", "growth"], "answer_idx": 0}
{"id": "Mercury_SC_401779", "prompt": "Which of the following is the best conductor of heat?", "choices": ["oven mitts", "a metal bowl", "a wooden spoon", "rubber soled shoes"], "answer_idx": 1}
{"id": "OHAT_2008_5_30", "prompt": "Some processes that shape Earth's surface are slow. Other processes are rapid. Which statement describes a rapid change?", "choices": ["Glaciers melt and form rivers.", "Wind weathers rocks into sand.", "Earthquakes move land and rocks.", "Rivers carry sediment and build deltas."], "answer_idx": 2}
{"id": "Mercury_SC_400181", "prompt": "Which characteristic best identifies a pure substance?", "choices": ["shape", "texture", "melting point", "state of matter"], "answer_idx": 2}
{"id": "Mercury_7222670", "prompt": "Structures in the universe are grouped into large systems, each of which are made up of smaller systems. Which of the following is the largest system of which Earth is only a very small part?", "choices": ["Jovian planets", "Halley's comet", "Milky Way galaxy", "Orion's belt"], "answer_idx": 2}
{"id": "Mercury_7016328", "prompt": "Which atomic structure has the greatest mass?", "choices": ["electron", "neutron", "nucleus", "proton"], "answer_idx": 2}
{"id": "MEAP_2005_8_14", "prompt": "When European settlers first came to North America, the average thickness of the top layer of soil was approximately 23 cm. Today, the average thickness of the top layer of soil is less than 15 cm. Which of the following factors has most likely had the greatest effect on erosion of the top layer of soil?", "choices": ["farming", "restoring wetlands", "species reintroduction", "excessive groundwater use"], "answer_idx": 0}
{"id": "TIMSS_2007_8_pg4", "prompt": "Which of the following is closest to the percentage of the total water on earth that is freshwater?", "choices": ["100%", "90%", "70%", "3%"], "answer_idx": 3}
{"id": "NYSEDREGENTS_2010_8_34", "prompt": "Most scientists agree that an increase in the amount of greenhouse gases entering Earth's atmosphere causes", "choices": ["a decrease in sea level", "a decrease in average surface temperatures", "an increase in melting of polar ice caps", "an increase in crustal plate movement"], "answer_idx": 2}
{"id": "Mercury_7202125", "prompt": "Scientists determined that cabbages grown using Fertilizer A grew bigger than cabbages grown using Fertilizer B or no fertilizer at all. The scientists repeated the investigation and produced the same results. Which best explains the purpose of repeating this investigation?", "choices": ["to ensure that the cabbages are safe for human consumption", "to discover the scientific principle that causes the increased growth", "to confirm that the observed differences were caused by the fertilizer", "to determine the difference between the experimental and control groups"], "answer_idx": 2}
{"id": "Mercury_7242900", "prompt": "When a small group of organisms colonizes a new habitat, the population may be genetically different from the parent population due to differences in allele frequencies. The process responsible for this is", "choices": ["natural selection.", "disruptive selection.", "genetic drift.", "genetic equilibrium."], "answer_idx": 2}
{"id": "Mercury_SC_400588", "prompt": "When conducting a scientific experiment in the field, you are expected to", "choices": ["completely clear the area.", "leave the area as you found it.", "take anything you may need later.", "destroy specimens once you have observed them."], "answer_idx": 1}
{"id": "Mercury_7282695", "prompt": "Which two behaviors best demonstrate stewardship?", "choices": ["reducing consumption, recycling wastes", "increasing consumption, discarding wastes", "reducing consumption, discarding wastes", "increasing consumption, recycling wastes"], "answer_idx": 0}
{"id": "Mercury_7018498", "prompt": "Beakers and graduated cylinders are designed to measure", "choices": ["mass.", "density.", "volume.", "viscosity."], "answer_idx": 2}
{"id": "CSZ20770", "prompt": "Iron oxides, such as rust, form when iron metal reacts with oxygen in the air. What are the chemical symbols for the two elements found in iron oxide?", "choices": ["I and O", "Ir and O", "Fe and O", "Pb and O"], "answer_idx": 2}
{"id": "Mercury_7174895", "prompt": "Scientists often use mathematical models and computer simulations to study systems. What is the main advantage of using these techniques for studying the spread of infectious diseases?", "choices": ["to reduce the amount of work for all involved", "to reduce the cost of conducting experiments on people", "to obtain results quickly in a short period of time", "to perform experiments that would be irresponsible using human subjects"], "answer_idx": 3}
{"id": "Mercury_SC_400375", "prompt": "Which of these actions causes wind?", "choices": ["rotation of Earth on its axis", "movement of air from water to land", "uneven heating of Earth's surface", "air passing Earth as it revolves around the Sun"], "answer_idx": 2}
{"id": "Mercury_SC_415394", "prompt": "A company wants to make a game that uses a magnet that sticks to a board. Which material should it use for the board?", "choices": ["cardboard", "glass", "steel", "wood"], "answer_idx": 2}
{"id": "Mercury_412693", "prompt": "Which sequence has the states of matter listed from least to greatest kinetic energy?", "choices": ["solid -> gas -> liquid", "gas -> liquid -> solid", "liquid -> solid -> gas", "solid -> liquid -> gas"], "answer_idx": 3}
{"id": "Mercury_7056665", "prompt": "A student is given a mixture of gravel and sand and instructed to separate them. Which tool should the student use to best complete this task?", "choices": ["a scale and weights", "a magnet", "a sieve", "a battery and wire"], "answer_idx": 2}
{"id": "MCAS_2003_8_26", "prompt": "A container is filled with 100 mL of water and placed in a freezer. The water in the container freezes at 0\u00b0C. A second container filled with 90 mL of water is placed in a second freezer. At what temperature does this second container of water freeze?", "choices": ["-10\u00b0C", "-1\u00b0C", "0\u00b0C", "10\u00b0C"], "answer_idx": 2}
{"id": "TIMSS_2003_4_pg35", "prompt": "What gas in the air do we need to breathe in order to live?", "choices": ["nitrogen", "oxygen", "carbon dioxide", "hydrogen", "water vapor"], "answer_idx": 1}
{"id": "Mercury_7218050", "prompt": "A city is experiencing heavy smog formed by motor vehicle exhaust. Which of these weather conditions contributes most to the formation of smog?", "choices": ["dry line", "cold front", "tropical cyclone", "temperature inversion"], "answer_idx": 3}
{"id": "Mercury_7010063", "prompt": "Ocean currents, like the Gulf Stream, affect world climate by", "choices": ["spreading plant and animal life over a wider area.", "ensuring ocean density is not the same globally.", "carrying sediment from rivers and inland basins.", "transferring heat to and from various regions."], "answer_idx": 3}
{"id": "Mercury_SC_405499", "prompt": "Jagged mountains would most likely become rounded hills through which process?", "choices": ["erosion", "deposition", "volcanic activity", "chemical change"], "answer_idx": 0}
{"id": "Mercury_SC_401172", "prompt": "While performing an experiment involving four different clear liquids, a student forgets to label the test tubes. What should the student do?", "choices": ["try to identify the liquids by smell", "ask another student to identify the liquids", "ask the teacher how to dispose of the liquids", "continue the experiment with the unidentified liquids"], "answer_idx": 2}
{"id": "Mercury_7056315", "prompt": "During the light reactions of photosynthesis, energy is stored in the compounds ATP and NADPH. A second set of reactions uses this stored energy to produce vital compounds such as glucose. This second set of reactions involves a biochemical pathway called", "choices": ["the Calvin cycle.", "carbon fixation.", "respiration.", "transpiration."], "answer_idx": 0}
{"id": "Mercury_7271198", "prompt": "What is the relationship between an ecosystem and a community?", "choices": ["A community is a very large ecosystem.", "An ecosystem is a very large community.", "An ecosystem includes a community and abiotic factors.", "A community includes an ecosystem and abiotic factors."], "answer_idx": 2}
{"id": "Mercury_7248203", "prompt": "Two species of garter snake in the genus Thamnophis originated from a single ancestor. These two species live in the same geographic area, however, one lives in arid land and the other lives in water.Which of the following best identifies the cause of speciation between these two garter snakes?", "choices": ["mechanical isolation", "behavioral isolation", "habitat isolation", "allopatric isolation"], "answer_idx": 2}
{"id": "TIMSS_1995_8_I16", "prompt": "A metal spoon, a wooden spoon, and a plastic spoon are placed in hot water. After 15 seconds, which spoon will feel hottest?", "choices": ["The metal spoon", "The wooden spoon", "The plastic spoon", "The three spoons will feel the same."], "answer_idx": 0}
{"id": "Mercury_7201163", "prompt": "The bacterium Brucella abortus causes fever in humans. Biologists studying this bacterium found that when exposed to light, the bacterium becomes more virulent. How can this change in virulence most likely be described?", "choices": ["as a behavioral adaptation", "as a survival disadvantage", "as a response to a stimulus", "as an acquired characteristic"], "answer_idx": 2}
{"id": "Mercury_7064698", "prompt": "When iron combines with oxygen in a moist environment, rust forms because of a", "choices": ["chemical reaction.", "physical reaction.", "change in density.", "change in temperature."], "answer_idx": 0}
{"id": "Mercury_7081550", "prompt": "A student counts ants in an ant colony every day at the same time. The student writes the date of observation in one column in a notebook and the number of ants counted on each date in a second column. Which best describes how the student arranged the information?", "choices": ["pie chart", "data table", "bar graph", "scatterplot"], "answer_idx": 1}
{"id": "ACTAAP_2015_7_7", "prompt": "Which human body systems work together to send messages?", "choices": ["muscular and skeletal", "nervous and endocrine", "excretory and digestive", "circulatory and respiratory"], "answer_idx": 1}
{"id": "Mercury_400278", "prompt": "In order for a material to be effective for cooking, it must have which physical property?", "choices": ["low melting point", "high electric charge", "high reactivity with water", "low thermal expansion"], "answer_idx": 3}
{"id": "NYSEDREGENTS_2008_4_24", "prompt": "Which sequence shows the life cycle of some insects?", "choices": ["adult -> pupa -> larva -> egg", "egg -> pupa -> larva -> adult", "larva -> pupa -> egg -> adult", "egg -> larva -> pupa -> adult"], "answer_idx": 3}
{"id": "LEAP__7_10341", "prompt": "A scientist studied a species of fish. She found that when a certain nutrient was added to the diet of the fish just after hatching, the fish gained an average of 3 kilograms in the first year. What additional information is needed to determine whether the nutrient is affecting the growth of the fish?", "choices": ["how much adult fish gained on average when the same nutrient was added to their diet", "how much newly hatched fish in this species gain in the first year without the nutrient in their diet", "how much of the nutrient is available for the fish species in their natural surroundings", "how much other species of fish gain in the first year when the nutrient is added to their diet"], "answer_idx": 1}
{"id": "TIMSS_2003_4_pg8", "prompt": "Humans interpret seeing, hearing, tasting, and smelling in the", "choices": ["brain", "spinal cord", "receptors", "skin"], "answer_idx": 0}
{"id": "Mercury_SC_409577", "prompt": "Dan knows the Earth is tilted 23.5\u00b0 on its axis. Which is caused because of this tilt?", "choices": ["day can become night", "different seasons occur", "low tide can become high tide", "the change in phases of the Moon"], "answer_idx": 1}
{"id": "Mercury_7198993", "prompt": "Gel electrophoresis is a technology which allows researchers to reliably separate and sort DNA fragments. This technology is most useful for which application?", "choices": ["selective breeding", "medical gene repair", "genetic engineering", "cell metabolism analysis"], "answer_idx": 2}
{"id": "Mercury_SC_409272", "prompt": "Some sea grasses grow near a group of palm trees on a sandy shore. Which best describes the role of both the palm trees and sea grasses?", "choices": ["They get energy from living organisms.", "They turn decaying matter into nutrients.", "They provide food for other organisms.", "They absorb oxygen from the environment."], "answer_idx": 2}
{"id": "VASoL_2008_5_11", "prompt": "Students collect pond water in their beakers. Which is the best unit of measurement for the volume of water they collect?", "choices": ["Grams", "Meters", "Milliliters", "Centimeters"], "answer_idx": 2}
{"id": "Mercury_7199938", "prompt": "When tectonic plates move, they can form different landforms. Which is least likely to be associated with the tectonic plate movement that forms volcanoes?", "choices": ["hot spot", "rift valley", "subduction zone", "transform boundary"], "answer_idx": 3}
{"id": "NYSEDREGENTS_2012_8_27", "prompt": "The thin layer of rock on Earth's surface is the", "choices": ["atmosphere", "hemisphere", "hydrosphere", "lithosphere"], "answer_idx": 3}
{"id": "Mercury_7264145", "prompt": "Which type of radiation provides astronomers with the most useful information about high-energy events such as stars colliding?", "choices": ["gamma radiation", "infrared radiation", "radio waves", "visible light"], "answer_idx": 0}
{"id": "Mercury_192990", "prompt": "All of the following are renewable resources except", "choices": ["minerals.", "trees.", "wind.", "water."], "answer_idx": 0}
{"id": "Mercury_405777", "prompt": "What is the most important property architects must consider when selecting materials for the walls, ceilings, and floors for a new concert hall?", "choices": ["thermal properties", "chemical properties", "electrical properties", "acoustical properties"], "answer_idx": 3}
{"id": "Mercury_SC_409153", "prompt": "Eduardo saw some cats living in an alley. Which of these does a cat need to survive?", "choices": ["grass to sleep in", "large trees to climb", "predators to chase it", "small animals to eat"], "answer_idx": 3}
{"id": "VASoL_2009_3_27", "prompt": "A puddle of water on a concrete driveway will disappear after a few hours during a sunny day. Where does the water go as it disappears?", "choices": ["It goes into the air.", "Animals drink it.", "It soaks into the concrete.", "It becomes a different substance."], "answer_idx": 0}
{"id": "MDSA_2009_8_32", "prompt": "Science students investigated the cause of the different phases of the moon. The model that would best demonstrate the cause of the phases of the moon would include representations of", "choices": ["the moon and Earth", "the moon and the sun", "the moon, the sun, and Earth", "the moon, the sun, and Venus"], "answer_idx": 2}
{"id": "Mercury_SC_400115", "prompt": "Electrical energy is best described as", "choices": ["coming from the Sun.", "attracting objects.", "moving negative charges.", "developing radiation."], "answer_idx": 2}
{"id": "MSA_2012_5_21", "prompt": "A car and a truck are traveling at the same rate of speed. The vehicles approach a stop sign. Which statement best explains why the car stops in a shorter distance than the truck?", "choices": ["The car has a larger mass requiring less force to stop.", "The car has a smaller mass requiring more force to stop.", "The truck has a smaller mass requiring less force to stop.", "The truck has a larger mass requiring more force to stop."], "answer_idx": 3}
{"id": "NCEOGA_2013_5_24", "prompt": "After a rain, a puddle of water remains on a sidewalk. After a day of sunshine, the puddle is gone. Which process is most responsible for the disappearance of the puddle?", "choices": ["precipitation", "transpiration", "evaporation", "condensation"], "answer_idx": 2}
{"id": "Mercury_7245245", "prompt": "After which event will primary succession most likely occur?", "choices": ["thunderstorm", "crop harvest", "volcanic eruption", "urban development"], "answer_idx": 2}
{"id": "FCAT_2012_8_4", "prompt": "An object moves through space with balanced forces acting on it. Which statement best describes the speed and direction of the object as long as the forces acting on it remain balanced?", "choices": ["The speed and direction of the object will both change.", "The speed and direction of the object will remain constant.", "The speed will change, but the direction will remain constant.", "The speed will remain constant, but the direction will change."], "answer_idx": 1}
{"id": "Mercury_SC_402124", "prompt": "About how long does it take Earth to make a complete revolution around the Sun?", "choices": ["1 year", "1 week", "1 day", "1 hour"], "answer_idx": 0}
{"id": "Mercury_7219695", "prompt": "Scientists found trilobite and brachiopod index fossils in cliffs a great distance apart from each other. What can scientists infer about the rocks in which these fossils were found?", "choices": ["the age of the rock", "the slope of the rock", "the density of the rock", "the weathering of the rock"], "answer_idx": 0}
{"id": "Mercury_SC_402122", "prompt": "Which of the following is a function of the digestive system of the human body?", "choices": ["carrying oxygen to the lungs", "sending signals from the brain to the spinal cord", "breaking down food into nutrients", "providing support for the body"], "answer_idx": 2}
{"id": "Mercury_SC_405800", "prompt": "A person must lift a heavy load of bricks to the top of a building. Which simple machine is best used for this task?", "choices": ["a wedge", "a pulley", "an inclined plane", "a wheel and axle"], "answer_idx": 1}
{"id": "Mercury_SC_400048", "prompt": "Which form of energy is required for a television set to work?", "choices": ["electrical", "heat", "light", "solar"], "answer_idx": 0}
{"id": "Mercury_7163870", "prompt": "The water cycle is important for recycling the water on Earth. Which of these is the source of most of the water vapor in Earth's atmosphere?", "choices": ["river flooding", "glacier melting", "ocean evaporation", "plant transpiration"], "answer_idx": 2}
{"id": "MCAS_2006_9_2", "prompt": "The molecule ATP is composed of elements commonly found in organic molecules. Which of the following is one of these elements?", "choices": ["aluminum", "calcium", "phosphorus", "tin"], "answer_idx": 2}
{"id": "NYSEDREGENTS_2008_4_7", "prompt": "Which energy transformation occurs when a person hits a drum with a drumstick?", "choices": ["electrical to light", "sound to electrical", "light to mechanical", "mechanical to sound"], "answer_idx": 3}
{"id": "Mercury_SC_401170", "prompt": "Which best describes the energy conversion by a household toaster?", "choices": ["electrical to heat", "heat to chemical", "electrical to chemical", "heat to mechanical"], "answer_idx": 0}
{"id": "NYSEDREGENTS_2013_4_24", "prompt": "In late fall, a rabbit's fur grows thicker. This adaptation occurs to", "choices": ["keep the rabbit's body warm", "keep the rabbit safe from predators", "help the rabbit find a mate", "help the rabbit find green plants"], "answer_idx": 0}
{"id": "Mercury_SC_401238", "prompt": "Many birds avoid eating the viceroy butterfly because it looks like the monarch butterfly. Monarch butterflies contain a substance that makes the birds sick when monarchs are eaten. The development of the pattern of the viceroy butterfly to look like the monarch butterfly is an example of", "choices": ["camouflage.", "coloration.", "diversity.", "mimicry."], "answer_idx": 3}
{"id": "Mercury_7218663", "prompt": "Which difference between water and ice results in ice floating on cold water?", "choices": ["heat", "shape", "density", "volume"], "answer_idx": 2}
{"id": "Mercury_7024938", "prompt": "When buying a sunscreen, which is the best question to keep in mind while reading the label for maximum effectiveness?", "choices": ["What is the cost per ounce?", "Who is the manufacturer?", "Is the product waterproof?", "How much protection does it provide?"], "answer_idx": 3}
{"id": "Mercury_182263", "prompt": "Which of the following is a description of an organism's development?", "choices": ["A sunflower grows toward the Sun.", "A Venus's-flytrap plant closes its leaves around a fly.", "An egg hatches, grows into a tadpole and then into a frog.", "A lizard loses its tail and grows a new one."], "answer_idx": 2}
{"id": "Mercury_7086800", "prompt": "Soil that drains slowly most likely has a high amount of", "choices": ["ash.", "sand.", "clay.", "peat."], "answer_idx": 2}
{"id": "Mercury_7248308", "prompt": "Bile salts play a crucial role in gastrointestinal homeostasis and digestion. Which phrase is the best description of the gastrointestinal function of bile salts?", "choices": ["digestion and absorption of proteins in the liver", "digestion and absorption of fats in the small intestine", "digestion and absorption of carbohydrates in the liver", "digestion and absorption of cholesterol in the large intestine"], "answer_idx": 1}
{"id": "NYSEDREGENTS_2015_8_31", "prompt": "Which type of energy is transferred by vibrational waves?", "choices": ["nuclear", "light", "chemical", "sound"], "answer_idx": 3}
{"id": "Mercury_7228078", "prompt": "The process of gene regulation directly impacts", "choices": ["how much DNA is stored.", "how much DNA is replicated.", "which mRNA is produced.", "which tRNA is produced."], "answer_idx": 2}
{"id": "Mercury_SC_402040", "prompt": "What is the most important thing a cylinder, a measuring cup, and a beaker all have in common?", "choices": ["They all hold liquids.", "They can all be made of glass.", "They can all be marked in milliliters.", "They can all be used to measure the volume of a liquid."], "answer_idx": 3}
{"id": "Mercury_7026758", "prompt": "Scientists have shown that clearing the forest in the Amazon for farming is causing the extinction of native species. Which is the most direct cause of extinction from clear-cutting of land?", "choices": ["pollution", "habitat loss", "climate change", "use of fertilizers"], "answer_idx": 1}
{"id": "Mercury_SC_409676", "prompt": "James read that plants benefit animals by changing the atmosphere. How do plants most likely change the atmosphere in a way that is beneficial for animals?", "choices": ["Plants release oxygen.", "Plants absorb sunlight.", "Plants produce heat energy.", "Plants make carbon dioxide."], "answer_idx": 0}
{"id": "NYSEDREGENTS_2010_8_9", "prompt": "What model is used to show the pattern of traits that are passed from one generation to the next in a family?", "choices": ["pedigree chart", "dichotomous key", "energy pyramid", "line graph"], "answer_idx": 0}
{"id": "Mercury_SC_LBS10906", "prompt": "Tiny droplets of water seen floating in the air can give scientists a clue about the weather. What are groups of these droplets called?", "choices": ["hail", "rain", "a front", "a cloud"], "answer_idx": 3}
{"id": "MDSA_2010_8_38", "prompt": "When taken to a new habitat, non-native plants often threaten native plants of the new habitat. Why do non-native plants threaten native plants?", "choices": ["Non-native plants are able to mutate rapidly.", "Non-native plants cause native animals to relocate.", "Non-native plants are able to be used for medicine.", "Non-native plants compete with native plants for resources."], "answer_idx": 3}
{"id": "Mercury_416672", "prompt": "Which technology enables doctors to monitor the function of the heart?", "choices": ["dialysis machine", "electrocardiogram", "electroencephalogram", "automatic external defibrillator"], "answer_idx": 1}
{"id": "ACTAAP_2014_7_12", "prompt": "Which substance contributes most to the greenhouse effect?", "choices": ["wood smoke", "nitrous oxides", "carbon dioxide", "nuclear radiation"], "answer_idx": 2}
{"id": "NYSEDREGENTS_2013_4_26", "prompt": "A large amount of oil was spilled in a lake environment. Within a few weeks, the number of plants and animals living in the area where the oil was spilled will most likely", "choices": ["decrease", "increase", "remain the same"], "answer_idx": 0}
{"id": "OHAT_2008_8_29", "prompt": "Which explains the relationship between hours of sunlight and seasons?", "choices": ["the rotation of Earth on its axis", "the tilt of Earth's axis relative to the sun", "the location of Earth's orbit in the solar system", "the motion of the moon as it travels around Earth"], "answer_idx": 1}
{"id": "Mercury_184170", "prompt": "The temperature of the stratosphere increases with altitude because of the presence of", "choices": ["nitrogen.", "water vapor.", "ozone.", "carbon monoxide."], "answer_idx": 2}
{"id": "Mercury_405769", "prompt": "Which structure refers to a group of specialized cells that all perform the same function?", "choices": ["virus", "tissue", "organ", "nucleus"], "answer_idx": 1}
{"id": "Mercury_SC_400359", "prompt": "Which event occurs only twice each year?", "choices": ["lunar eclipse", "full moon", "equinox", "low tide"], "answer_idx": 2}
{"id": "Mercury_7011393", "prompt": "What would be the phenotype of a cross between a homozygous dominant tall plant and a homozygous recessive short plant?", "choices": ["100% tall", "100% short", "25% short, 75% tall", "50% short, 50% tall"], "answer_idx": 0}
{"id": "Mercury_SC_409682", "prompt": "Joey is making breakfast and pours a glass of milk over a bowl of dry cereal. Which best describes what Joey made for breakfast?", "choices": ["element", "compound", "mixture", "solution"], "answer_idx": 2}
{"id": "Mercury_7220028", "prompt": "Scientists determined that specific agents produce specific diseases, and many are transmitted by sneezing. What must the droplets contain for a disease to be transmitted by sneezing?", "choices": ["the disease-causing particles", "cells exposed to the disease", "toxins released by diseased cells", "disease-specific antibodies"], "answer_idx": 0}
{"id": "MCAS_2011_5_15", "prompt": "Which of the following organisms would most likely get its food energy only from consumers?", "choices": ["deer", "grass", "hawk", "mushroom"], "answer_idx": 2}
{"id": "Mercury_SC_400217", "prompt": "Coal is a fossil fuel that is formed from", "choices": ["water eroding the land.", "meteors hitting Earth.", "repeated volcanic eruptions.", "the decay of organic material."], "answer_idx": 3}
{"id": "TIMSS_2011_4_pg7", "prompt": "What do birds, bats and butterflies have in common?", "choices": ["feathers", "hair", "internal skeleton", "wings"], "answer_idx": 3}
{"id": "Mercury_7263515", "prompt": "Changes at the molecular level can turn proto-oncogenes into oncogenes. These changes cause unregulated cell division. Which disease is caused by this transformation?", "choices": ["diabetes", "leukemia", "pneumonia", "hemophilia"], "answer_idx": 1}
{"id": "Mercury_7018463", "prompt": "Which characteristic of sound makes it possible for bats to fly in the dark without hitting any objects?", "choices": ["refraction", "reflection", "conduction", "amplification"], "answer_idx": 1}
{"id": "Mercury_SC_401833", "prompt": "Students went on a class field trip to Natural Bridge Caverns. They noticed rock formations in the cave called stalactites. Which of these processes caused the stalactites to form?", "choices": ["heat", "pressure", "freezing", "deposition"], "answer_idx": 3}
{"id": "Mercury_187460", "prompt": "A switch that can open or close an electric circuit can be used to", "choices": ["increase the amount of current.", "reverse the current's direction.", "stop the current.", "accelerate the current."], "answer_idx": 2}
{"id": "Mercury_SC_409149", "prompt": "Jesus learned that a space probe named Voyager 1 was launched from Earth in 1977. It will take Voyager 1 more than 500 years to travel 1 light year. What is a light year used to measure in space?", "choices": ["distance", "energy", "force", "time"], "answer_idx": 0}
{"id": "Mercury_417589", "prompt": "Scientists think that the rise in global temperature during the last one hundred years is due to an increase of carbon dioxide in the atmosphere. Which question would best help scientists assess the claim that humans are responsible for the rising global temperature?", "choices": ["What is the mechanism by which carbon dioxide heats Earth?", "What is the source of most of the carbon dioxide in the atmosphere?", "What is the source of the increase of carbon dioxide in the atmosphere?", "What is the increase in the concentration of carbon dioxide in the atmosphere?"], "answer_idx": 2}
{"id": "ACTAAP_2011_5_14", "prompt": "Which structure controls what enters both plant cells and animal cells?", "choices": ["nucleus", "cell wall", "chloroplast", "cell membrane"], "answer_idx": 3}
{"id": "Mercury_400837", "prompt": "Appearance, texture, and density are classified as", "choices": ["physical properties.", "chemical properties.", "magnetic properties.", "thermal properties."], "answer_idx": 0}
{"id": "Mercury_405942", "prompt": "A student compares a plant cell to an animal cell. Which structure will the student find ONLY in the plant cell?", "choices": ["chloroplast", "nucleus", "mitochondrion", "cytoplasm"], "answer_idx": 0}
{"id": "Mercury_7186935", "prompt": "One hot summer, a grassland experienced a drought. Which most likely happened in the ecosystem during this time?", "choices": ["The competition for food among primary consumers increased.", "Nutrients cycled through the system at a faster rate.", "Less solar radiation was able to enter the system.", "Secondary consumers became extinct."], "answer_idx": 0}
{"id": "MDSA_2011_8_13", "prompt": "The need for farmland in Brazil has led to the cutting of the rain forests in the Amazon. Cutting trees in the Amazon rain forest might have a global effect by", "choices": ["decreasing the amount of fresh water", "increasing the number of animal species", "decreasing the average yearly temperatures", "increasing carbon dioxide levels in the atmosphere"], "answer_idx": 3}
{"id": "Mercury_7252263", "prompt": "Which two body systems maintain the level of glucose in the blood?", "choices": ["nervous and respiratory systems", "digestive and endocrine systems", "muscular and immune systems", "skeletal and cardiac systems"], "answer_idx": 1}
{"id": "NYSEDREGENTS_2015_8_45", "prompt": "A student writes in a laboratory notebook: I placed a piece of iron in a beaker of water and the iron sank to the bottom of the beaker. What the student wrote in the laboratory notebook is an example of a(n)", "choices": ["observation", "prediction", "inference", "hypothesis"], "answer_idx": 0}
{"id": "Mercury_412625", "prompt": "Which series correctly represents the levels of organization in an organism?", "choices": ["cells -> organs -> organ system -> tissue", "cells -> tissue -> organs -> organ system", "tissue -> cells -> organ system -> organs", "tissue -> organ system -> cells -> organs"], "answer_idx": 1}
{"id": "Mercury_SC_406672", "prompt": "Which is a function of a seed?", "choices": ["forming fruit", "making pollen", "storing food for a new plant", "taking in water from the ground"], "answer_idx": 2}
{"id": "TAKS_2009_8_12", "prompt": "Which process below uses carbon dioxide and the sun's radiant energy to produce chemical energy?", "choices": ["Evaporation", "Photosynthesis", "Respiration", "Decomposition"], "answer_idx": 1}
{"id": "Mercury_7270270", "prompt": "A serotinous cone is a seed enclosure that requires intense heat to open. When would a population of trees most benefit from having serotinous cones?", "choices": ["after a drought", "after a heat wave", "after a forest fire", "after a tornado"], "answer_idx": 2}
{"id": "Mercury_SC_LBS11008", "prompt": "A lumber company plants new trees where a forest once stood. This is an example of", "choices": ["conserving resources.", "consuming resources.", "recycling resources.", "replacing resources."], "answer_idx": 3}
{"id": "Mercury_SC_414087", "prompt": "Some pea plants always have peas with smooth skin. Other pea plants always have peas with wrinkled skin. How can a student best predict which kind of pea will grow from a seed that is planted?", "choices": ["by checking the amount of water in the soil", "by checking how often the pea plant receives sunlight", "by checking how much space the plant will have to grow", "by checking the type of peas growing on the parent plants"], "answer_idx": 3}
{"id": "MEA_2016_5_8", "prompt": "How do plants affect their environment?", "choices": ["Plants clean the soil.", "Plants make sunlight brighter.", "Plants make food used by other organisms.", "Plants create water"], "answer_idx": 2}
{"id": "ACTAAP_2014_5_13", "prompt": "Which is an example of a physical property of an object?", "choices": ["The object bends without breaking.", "The object bubbles when put into an acid.", "The object burns when touched by a flame.", "The object gives off sparks when put into water."], "answer_idx": 0}
{"id": "MEA_2014_5_3", "prompt": "What happens when a warm object is put inside a cooler object?", "choices": ["The warm object loses energy and the cool object gains energy so that both objects stay at different temperatures.", "The warm object gains energy and the cool object loses energy so that both objects stay at different temperatures.", "The warm object loses energy and the cool object gains energy until both objects are the same temperature.", "The warm object gains energy and the cool object loses energy until both objects are the same temperature."], "answer_idx": 2}
{"id": "Mercury_SC_401125", "prompt": "Newborn white-tailed deer have hundreds of spots on their coats which gradually disappear at three to four months of age. The spots on their coats make the newborns blend in with the environment through", "choices": ["mimicry.", "migration.", "hibernation.", "camouflage."], "answer_idx": 3}
{"id": "Mercury_7212625", "prompt": "What is the smallest particle of an element that still exhibits all the properties of that element?", "choices": ["an electron", "an atom", "a molecule", "a proton"], "answer_idx": 1}
{"id": "Mercury_7250285", "prompt": "A population of tree-climbing lizard lives on one bank of a large river. The other bank of the river is a treeless prairie. During a flood, 40 lizards were transferred to the prairie side of the river. After 200 generations, this transferred population of lizard lost the ability to climb.Which mechanism is most likely responsible for this loss of function within the transferred population?", "choices": ["gene flow", "natural selection", "genetic drift", "mutation"], "answer_idx": 2}
{"id": "NYSEDREGENTS_2012_4_7", "prompt": "When a cup of water at room temperature is put in a freezer, the water's state of matter will change from", "choices": ["liquid to gas", "gas to liquid", "liquid to solid", "solid to liquid"], "answer_idx": 2}
{"id": "Mercury_7168718", "prompt": "The weight of an object can change because of the force that acts on that object. Which force causes the weight of an object to change?", "choices": ["gravitational", "electrical", "magnetic", "friction"], "answer_idx": 0}
{"id": "MDSA_2012_8_36", "prompt": "Use the information below to answer the question. The human body is composed of different systems made of specialized cells, tissues, and organs. Each of these structures has a specific function that aids in the survival of the human species. What is the primary function of the excretory system?", "choices": ["to digest food", "to help in defense", "to eliminate waste", "to enable movement"], "answer_idx": 2}
{"id": "Mercury_7044065", "prompt": "What is the MAJOR cause of acid rain?", "choices": ["smelting ore", "evaporation of polluted water", "jet airplane exhaust high in the sky", "sulfur combining with water vapor in the atmosphere"], "answer_idx": 3}
{"id": "Mercury_SC_410619", "prompt": "In 1921, Earl Dickson invented a bandage after he noticed his wife was unable to easily cover cuts on her hands. He covered the bandage with a chemical that sealed it so air would not enter the cut. How did solving this problem benefit others medically?", "choices": ["People relied on bandages more than doctors.", "The bandages cured cuts that were infected.", "The bandages helped keep cuts clean.", "People cut themselves less often."], "answer_idx": 2}
{"id": "Mercury_SC_406026", "prompt": "Which is a factor that most likely would affect the climate in a particular area?", "choices": ["amount of lightning", "distance from an ocean", "number of earthquakes", "shape of the shoreline"], "answer_idx": 1}
{"id": "Mercury_SC_406024", "prompt": "Pond ecosystems depend on the water cycle to ensure the survival of the animals that live in or near the pond. If a drought reduces the water level, which population of animals would be most affected?", "choices": ["duck", "fish", "mouse", "snake"], "answer_idx": 1}
{"id": "Mercury_406773", "prompt": "Some plants rely on hummingbirds for pollination. If a deadly disease infected the hummingbird population, what would most likely happen to the plants?", "choices": ["They would die within hours.", "They would become endangered.", "They would need to migrate.", "They would grow at a slower rate."], "answer_idx": 1}
{"id": "Mercury_SC_400857", "prompt": "When salt is added to ice, the ice begins to melt because the salt", "choices": ["raises the freezing point.", "lowers the freezing point.", "raises the boiling point.", "lowers the boiling point."], "answer_idx": 1}
{"id": "MDSA_2008_8_29", "prompt": "Leaf cells are one type of tree cell. Which process occurs in a growing leaf cell?", "choices": ["evolution", "adaptation", "sugar production", "sexual reproduction"], "answer_idx": 2}
{"id": "Mercury_SC_407219", "prompt": "Which diagram correctly shows the flow of energy in a food chain?", "choices": ["Decomposer -> Consumer -> Producer", "Producer -> Consumer -> Decomposer", "Consumer -> Producer -> Decomposer", "Producer -> Decomposer -> Consumer"], "answer_idx": 1}
{"id": "NYSEDREGENTS_2012_4_8", "prompt": "Which form of energy is produced when paper is burned?", "choices": ["heat", "magnetic", "electrical", "chemical"], "answer_idx": 0}
{"id": "Mercury_7083405", "prompt": "A group of cells performing the same function in the body is called", "choices": ["a tissue.", "an organelle.", "an organism.", "a system."], "answer_idx": 0}
{"id": "Mercury_SC_402079", "prompt": "Which material is a good conductor of heat?", "choices": ["plastic", "rubber", "glass", "copper"], "answer_idx": 3}
{"id": "ACTAAP_2007_7_17", "prompt": "All living organisms have certain needs in order to stay alive. Which is most necessary for both plants and animals?", "choices": ["food", "water", "chlorophyll", "carbon dioxide"], "answer_idx": 1}
{"id": "Mercury_7093013", "prompt": "Plant leaves have tiny pores. These pores help plants release water from their tissues into the", "choices": ["lithosphere.", "biosphere.", "hydrosphere.", "atmosphere."], "answer_idx": 3}
{"id": "TIMSS_2003_4_pg17", "prompt": "How can washing your hands help keep you from getting sick?", "choices": ["It washes away germs.", "It makes your hands look nice.", "It keeps your skin from drying out.", "It makes your hands warmer."], "answer_idx": 0}
{"id": "Mercury_SC_416527", "prompt": "Which part of a plant makes sugar from carbon dioxide?", "choices": ["stem", "leaf", "root", "flower"], "answer_idx": 1}
{"id": "MCAS_2005_9_9", "prompt": "One method of heat distribution is a baseboard forced hot water system. A baseboard system carries hot water through a pipe that passes through many small, flat plates called fins. What is the purpose of these fins?", "choices": ["to dissipate the heat of the hot water flowing through the pipe", "to prevent the baseboard from coming in contact with hot surfaces", "to replace the heated air leaving the system with cold air", "to prevent dust and other particles from entering the baseboard"], "answer_idx": 0}
{"id": "Mercury_7161403", "prompt": "Aerogels are compounds formed by the drying of certain gels. Although the aerogel hardens into a solid material, the particles in the gel are much farther apart than those of most solids and particles are held together by strong bridges of covalently bonded atoms. Which of the following is a likely property of aerogels?", "choices": ["very low density", "high electrical conductivity", "very low melting point", "very flexible"], "answer_idx": 0}
{"id": "Mercury_SC_405062", "prompt": "What renewable energy source used to make electricity is thought to be always available?", "choices": ["oil", "coal", "wind", "nuclear"], "answer_idx": 2}
{"id": "Mercury_7142748", "prompt": "When heat flows from a hot spot to a cooler spot, entropy increases. When heat is forced to flow from a cool spot to a warmer spot, entropy decreases. Marta is looking for something in her house that causes a decrease in entropy. Which of these should she choose?", "choices": ["an ice cube melting", "the refrigerator", "an egg frying", "the toaster"], "answer_idx": 1}
{"id": "Mercury_7024675", "prompt": "Which of the following is influenced by both genetics and behavior?", "choices": ["eye color", "hair texture", "blood type", "body weight"], "answer_idx": 3}
{"id": "Mercury_7267575", "prompt": "Which of the following natural disasters is likely to cause the most widespread damage in a coastal ecosystem?", "choices": ["a landslide", "a tornado", "a tsunami", "an earthquake"], "answer_idx": 2}
{"id": "Mercury_7170905", "prompt": "One function of the circulatory system is to carry cellular nutrients to the body. Which part of the circulatory system is responsible for exchanging nutrients and wastes?", "choices": ["arteries", "capillaries", "heart", "veins"], "answer_idx": 1}
{"id": "Mercury_400158", "prompt": "How does sedimentary rock form?", "choices": ["sediments cool", "sediments melt", "sediments separate", "sediments compress"], "answer_idx": 3}
{"id": "MCAS_2011_5_11", "prompt": "Which of the following best explains why electrical wires are usually covered with plastic or rubber?", "choices": ["to insulate the electrical wire", "to keep the electrical wire warm", "to make the electrical wire stronger", "to make the electrical wire more flexible"], "answer_idx": 0}
{"id": "Mercury_SC_400595", "prompt": "The Moon revolves around Earth about once every", "choices": ["day.", "year.", "week.", "month."], "answer_idx": 3}
{"id": "TIMSS_2011_4_pg58", "prompt": "Calcium is a mineral that helps make your bones and teeth strong. Which of these foods is the best source of calcium?", "choices": ["candy", "rice", "cheese", "meat"], "answer_idx": 2}
{"id": "Mercury_7245578", "prompt": "According to the endosymbiotic theory, the outer membrane of the chloroplast originated from which organelle?", "choices": ["the lysosome of an engulfed prokaryotic cell", "the chloroplast of an engulfed prokaryotic cell", "the cell membrane of an eukaryotic host cell", "the chloroplast of an eukaryotic host cell"], "answer_idx": 2}
{"id": "Mercury_7217280", "prompt": "Students performing a scientific investigation are most likely trying to", "choices": ["produce a new theory.", "disprove a hypothesis.", "reject a conclusion.", "answer a question."], "answer_idx": 3}
{"id": "Mercury_405951", "prompt": "Which statement describes a function of bones in mammals such as dogs and horses?", "choices": ["Bones provide protection for organs in the body.", "Bones send messages to the brain to move the muscles.", "Bones carry oxygen-rich blood throughout the body.", "Bones connect the brain and the spinal cord."], "answer_idx": 0}
{"id": "Mercury_7017920", "prompt": "To a person standing motionless on the Earth's surface on a day with no wind, in which direction would the rain appear to fall?", "choices": ["vertically", "diagonally", "horizontally", "circularly"], "answer_idx": 0}
{"id": "Mercury_SC_415005", "prompt": "Which two things interact most in the water cycle?", "choices": ["oceans and the Moon", "oceans and the Sun", "lakes and the Moon", "lakes and the Sun"], "answer_idx": 1}
{"id": "MEA_2013_5_16", "prompt": "Some animals have advantages and disadvantages because they are different. Which of the following has a disadvantage compared to other animals in its population?", "choices": ["a polar bear that has dark-colored fur", "a deer with long legs", "a rabbit that can run fast", "a hummingbird with a long beak"], "answer_idx": 0}
{"id": "Mercury_SC_401155", "prompt": "Which is a characteristic of both plants and animals?", "choices": ["life cycles", "learned behaviors", "produce their own food", "reproduce using seeds"], "answer_idx": 0}
{"id": "TIMSS_2011_8_pg19", "prompt": "What is the main difference between planets and moons in our solar system?", "choices": ["All planets can support life; moons cannot.", "All planets have atmospheres; moons do not.", "All planets orbit the Sun; all moons orbit planets.", "All planets are larger than all moons."], "answer_idx": 2}
{"id": "Mercury_7013685", "prompt": "Which is a response of the autonomic nervous system that helps maintain equilibrium in the body?", "choices": ["shivering in cold temperatures", "eating due to appetite", "slapping at biting insects", "pulling away from hot objects"], "answer_idx": 0}
{"id": "Mercury_SC_401119", "prompt": "Maria Mitchell discovered a comet in 1847 that was later named after her. Maria Mitchell's discovery contributed to which branch of science?", "choices": ["biology", "chemistry", "geology", "astronomy"], "answer_idx": 3}
{"id": "NYSEDREGENTS_2010_4_10", "prompt": "When a lightbulb is lit, electrical energy is changed into light energy and", "choices": ["chemical energy", "magnetic energy", "heat energy", "mechanical energy"], "answer_idx": 2}
{"id": "MCAS_2016_5_16", "prompt": "Water moves directly from a lake to the air by which of the following processes?", "choices": ["condensation", "evaporation", "precipitation", "sedimentation"], "answer_idx": 1}
{"id": "Mercury_178308", "prompt": "In the late 1700s, Antoine Lavoisier performed a series of experiments to find out what happened when a substance burned. In each experiment, he observed that the weight of a container and its contents was the same at the end of the experiment as it had been in the beginning. These observations led him to propose the law of", "choices": ["combustion.", "fixed proportions.", "conservation of mass.", "conservation of energy."], "answer_idx": 2}
{"id": "Mercury_405107", "prompt": "A student has a mineral sample. He wonders if the sample is the mineral mica. He knows the cleavage pattern of mica is a smooth, flat sheet. The student can best find out the cleavage pattern of the sample by", "choices": ["shining a light on the mineral.", "soaking the mineral in water.", "rubbing a penny against the mineral.", "breaking off a piece of the mineral."], "answer_idx": 3}
{"id": "NYSEDREGENTS_2010_8_28", "prompt": "A full Moon is observed in Buffalo, New York, on June 1. Approximately when will the next full Moon be observed in Buffalo?", "choices": ["June 7", "June 15", "July 1", "July 7"], "answer_idx": 2}
{"id": "Mercury_400799", "prompt": "A computer model of an insect population takes into account the following parameters: * available food resources * annual temperature variation * timing of insect reproductive cycles Which additional parameter would most significantly improve the model's accuracy when predicting the insect population size?", "choices": ["decomposers recycling dead insects", "annual variation in oxygen availability", "activities of predators preying on insects", "variation in barometric pressure"], "answer_idx": 2}
{"id": "Mercury_SC_401219", "prompt": "Many insects go through metamorphosis. Which series shows the stages of complete metamorphosis correctly?", "choices": ["egg, nymph, pupa, adult", "egg, larva, nymph, adult", "egg, nymph 1, nymph 2, adult", "egg, larva, pupa, adult"], "answer_idx": 3}
{"id": "VASoL_2009_5_22", "prompt": "Which of these describes rotation?", "choices": ["Mercury goes around the Sun every 88 days.", "The Moon goes around Earth every 28 days.", "Earth orbits the Sun about every 365 days.", "Earth makes one turn on its axis every 24 hours."], "answer_idx": 3}
{"id": "ACTAAP_2013_5_5", "prompt": "Sam looks into a fish pond and points at a goldfish. Sam's grandfather looks where Sam is pointing and tells Sam that the fish is actually in a different location. Which property of light explains why Sam's grandfather is correct?", "choices": ["reflection", "refraction", "diffraction", "absorption"], "answer_idx": 1}
{"id": "NCEOGA_2013_5_27", "prompt": "People sitting around a campfire are able to feel the heat from the fire. How are the people able to feel the heat from the fire without touching the fire?", "choices": ["The heat from the fire travels through the ground and heats the ground around the people.", "The heat from the fire is conducted through air molecules to the people.", "The heat from the fire rises in the air and then settles around the people.", "The heat from the fire radiates from the fire to the people."], "answer_idx": 3}
{"id": "ACTAAP_2008_5_12", "prompt": "In which case does a physical change occur?", "choices": ["Ice melts into water.", "Bread burns in a toaster.", "A cake bakes in an oven.", "Two chemicals form a new substance."], "answer_idx": 0}
{"id": "ACTAAP_2008_7_17", "prompt": "Which energy source could involve a dam?", "choices": ["biomass", "solar power", "geothermal energy", "hydroelectric power"], "answer_idx": 3}
{"id": "Mercury_7250110", "prompt": "Which cellular structure do organisms in the kingdoms Eubacteria, Archaebacteria, and Protista have in common?", "choices": ["a nucleus", "a cell membrane", "a circular chromosome", "a mitochondrion"], "answer_idx": 1}
{"id": "WASL_2005_5_10", "prompt": "Sheri went on a field trip with her class and saw a stream with floating garbage. How could this pollution affect humans?", "choices": ["There may not be enough drinking water.", "There may not be enough water in the water cycle.", "There may not be enough oxygen for humans to breathe."], "answer_idx": 0}
{"id": "NYSEDREGENTS_2008_8_24", "prompt": "Which information would probably be most helpful to someone trying to identify a mineral sample?", "choices": ["location and mass of the sample", "shape and texture of the sample", "hardness and streak of the sample", "color and size of the sample"], "answer_idx": 2}
{"id": "Mercury_7091858", "prompt": "Which of these is most likely an effect of releasing carbon dioxide pollution into the atmosphere?", "choices": ["a reduction in the ozone layer", "a reduction in photosynthesis", "an increase in radioactive wastes", "an increase in the greenhouse effect"], "answer_idx": 3}
{"id": "Mercury_405948", "prompt": "Plastic conducts very little thermal energy or electricity. Because of this property, plastic would most likely be used to cover", "choices": ["metal.", "wood.", "solids.", "liquids."], "answer_idx": 0}
{"id": "OHAT_2009_8_8", "prompt": "Which unit of measurement do astronomers use when measuring the distance between two stars found in the Milky Way?", "choices": ["meter", "light-year", "kilometer", "astronomical unit"], "answer_idx": 1}
{"id": "Mercury_SC_408425", "prompt": "The human body is made up of several systems. The mouth, esophagus, and stomach are all parts of which system?", "choices": ["circulatory", "digestive", "nervous", "skeletal"], "answer_idx": 1}
{"id": "Mercury_SC_415489", "prompt": "Which term describes the path the Moon travels around Earth?", "choices": ["rotation", "day", "orbit", "phase"], "answer_idx": 2}
{"id": "Mercury_7037678", "prompt": "Which best describes an exothermic reaction?", "choices": ["a physical change occurs", "equal amounts of products are produced", "energy is required", "energy is released"], "answer_idx": 3}
{"id": "TIMSS_2011_4_pg14", "prompt": "During freezing, melting, and boiling, water changes from one state to another state. Heat needs to be supplied for which of these to take place?", "choices": ["boiling only", "melting only", "melting and freezing but not boiling", "melting and boiling but not freezing"], "answer_idx": 3}
{"id": "Mercury_SC_LBS10391", "prompt": "Which of the following is a first-level consumer?", "choices": ["wolf", "hawk", "carrot", "rabbit"], "answer_idx": 3}
{"id": "CSZ_2009_8_CSZ30764", "prompt": "A force of 5 N is required to increase the speed of a box from a rate of 1.0 m/s to 3.0 m/s within 5 s along a level surface. What change would most likely require additional force to produce the same results?", "choices": ["reduce the mass of the box", "increase the mass of the box", "make the surfaces of the box smooth", "make the surface of the floor smooth"], "answer_idx": 1}
{"id": "Mercury_7040933", "prompt": "What is the MAJOR reason Earth has seasons?", "choices": ["Earth has a moon", "Earth has a tilted axis", "Earth has a magnetic field", "Earth has an elliptical orbit"], "answer_idx": 1}
{"id": "Mercury_7175805", "prompt": "In a particular habitat, Animal X has two sources of food. One source is found in the water and the other source is found on land. If the main predator of Animal X is found only on land, what is the most likely structural adaptation that will be selected for in the population of Animal X?", "choices": ["development of claws", "increase in leg strength", "increase in visual acuity", "development of webbed feet"], "answer_idx": 3}
{"id": "Mercury_7128870", "prompt": "A teacher uses an instrument that records decibel levels. What is the teacher measuring?", "choices": ["noise levels", "intensity of light", "relative humidity", "types of thermal energy"], "answer_idx": 0}
{"id": "Mercury_SC_406851", "prompt": "Which best explains how nutrients get into soil?", "choices": ["through exposure to air", "by absorbing sunlight", "through decaying matter", "by rocks eroding"], "answer_idx": 2}
{"id": "Mercury_409822", "prompt": "Lichens grow on rocks and produce an acid that reacts with part of the rock, forming soil. Which best describes the action of lichens on the rocks?", "choices": ["erosion", "fertilizer", "chemical weathering", "mechanical weathering"], "answer_idx": 2}
{"id": "LEAP_2005_4_10266", "prompt": "Why do the Sun and Moon appear to move across the sky?", "choices": ["The rotation of the solar system makes the Sun and Moon seem to move.", "The rotation of Earth makes the Sun and Moon seem to move.", "The Sun and Moon revolve around Earth.", "Earth revolves around the Sun and the Moon."], "answer_idx": 1}
{"id": "Mercury_7024360", "prompt": "Which human activity would have the greatest positive impact on the water quality of a stream?", "choices": ["releasing warm water into the stream", "driving cars through the stream", "reducing use of fertilizers near the stream", "increasing use of chemicals near the stream"], "answer_idx": 2}
{"id": "NYSEDREGENTS_2015_4_10", "prompt": "A student pours water into a cup and places the cup in a freezer. After many hours, the water will change from", "choices": ["solid to gas", "solid to liquid", "liquid to solid", "liquid to gas"], "answer_idx": 2}
{"id": "Mercury_SC_401141", "prompt": "Which gas is given off by a plant during photosynthesis?", "choices": ["oxygen", "nitrogen", "hydrogen", "carbon dioxide"], "answer_idx": 0}
{"id": "MCAS_2012_5_23619", "prompt": "Which of the following processes makes it possible for plants to use energy from sunlight to produce their own food?", "choices": ["metamorphosis", "photosynthesis", "pollination", "reproduction"], "answer_idx": 1}
{"id": "Mercury_416642", "prompt": "Which protist has starch granules in its cytoplasm?", "choices": ["amoeba", "euglena", "paramecium", "volvox"], "answer_idx": 1}
{"id": "Mercury_7210193", "prompt": "Which resource is more available due to improvements in deep-sea drilling technology?", "choices": ["crude oil", "fresh water", "thermal energy", "salt reserves"], "answer_idx": 0}
{"id": "Mercury_7057330", "prompt": "Tooth decay is an infection that causes deterioration of the protective enamel on teeth, resulting in damage. Tooth decay is most likely caused by", "choices": ["bacteria.", "acidic food.", "allergies.", "genetic defects."], "answer_idx": 0}
{"id": "Mercury_7250128", "prompt": "Which structure do a rabbit cell and a bacillus cell have in common?", "choices": ["mitochondrion", "capsule", "nucleus", "DNA"], "answer_idx": 3}
{"id": "Mercury_SC_LBS10338", "prompt": "Which of these is necessary for life on Earth?", "choices": ["water", "trees", "wind", "soil"], "answer_idx": 0}
{"id": "Mercury_7008960", "prompt": "During a collision, a seat belt slows the speed of a crash dummy. What is the direction of the net force exerted by the seat belt compared to the direction of the crash dummy's motion?", "choices": ["in the same direction", "in a vertical direction", "in a downward direction", "in the opposite direction"], "answer_idx": 3}
{"id": "MEA_2010_8_13", "prompt": "By inserting a gene into crop plants, scientists have developed plants that are resistant to insects. If an insect eats the plant, the insect dies. Which practice is unnecessary with this new plant variety?", "choices": ["eroding the land by tilling", "overproducing food crops", "removing weeds from crops", "spraying plants with pesticides"], "answer_idx": 3}
{"id": "Mercury_SC_409595", "prompt": "As wood in a campfire burns, it releases heat and becomes ash. What kind of change occurs in the wood when it burns and releases heat?", "choices": ["nuclear", "magnetic", "chemical", "mechanical"], "answer_idx": 2}
{"id": "NYSEDREGENTS_2012_8_3", "prompt": "Which statement is an inference?", "choices": ["A thermometer shows that the air temperature is 56\u00b0F.", "A mineral sample of galena produced a gray-black streak when tested.", "Based on previous data, ten hurricanes may occur in the year 2013.", "A weather vane indicates the wind is coming from the west."], "answer_idx": 2}
{"id": "Mercury_7008383", "prompt": "Which process moves water from the oceans to the atmosphere?", "choices": ["condensation", "transpiration", "evaporation", "precipitation"], "answer_idx": 2}
{"id": "Mercury_7248150", "prompt": "At concentrations of 0.1-1 \u00b5g/ml colchicine, a natural plant product, can cause the mitotic arrest of dividing cells at metaphase through disrupting the spindle apparatus. Colchicine interferes with which of these cell functions during cell division?", "choices": ["microtubule organization of spindle fibers", "DNA synthesis of spindle protein", "membrane transport of spindle fibers", "RNA synthesis of spindle protein"], "answer_idx": 0}
{"id": "Mercury_401240", "prompt": "Most species of ducks have webbed feet. The webbed feet are an example of", "choices": ["behavioral trait.", "a learned trait.", "an inherited trait.", "an instinctive trait."], "answer_idx": 2}
{"id": "NYSEDREGENTS_2010_8_30", "prompt": "On which date does North America usually experience the longest period of daylight?", "choices": ["March 21", "June 21", "September 21", "December 21"], "answer_idx": 1}
{"id": "TIMSS_2011_4_pg102", "prompt": "What causes an object to fall to the ground when you let it drop from your hand?", "choices": ["magnetism", "gravity", "air resistance", "the push from your hand"], "answer_idx": 1}
{"id": "Mercury_SC_400693", "prompt": "The phases of the Moon are caused by the", "choices": ["tilt of the Earth.", "tilt of the Moon.", "revolution of the Earth around the Sun.", "revolution of the Moon around the Earth."], "answer_idx": 3}
{"id": "Mercury_7168140", "prompt": "One system of the human body works along with the skeletal system by assisting movement and maintaining posture. Which system is being described?", "choices": ["respiratory", "circulatory", "muscular", "digestive"], "answer_idx": 2}
{"id": "Mercury_175963", "prompt": "The discovery of penicillin helped in the", "choices": ["treatment of infections.", "healing of bones.", "discovery of viruses.", "search for diseases."], "answer_idx": 0}
{"id": "NYSEDREGENTS_2010_8_15", "prompt": "When the environment changes more quickly than a species can adapt, the species may become", "choices": ["extinct", "dominant", "diverse", "overpopulated"], "answer_idx": 0}
{"id": "Mercury_SC_400676", "prompt": "A student hears on the radio that the outside temperature is 32\u00b0C. What type of weather will the student most likely expect when she steps outside?", "choices": ["cool, rainy fall weather", "cold, snowy winter weather", "hot, sunny summer weather", "spring weather with flowers blooming"], "answer_idx": 2}
{"id": "Mercury_7007683", "prompt": "Which parts of an atom are reactive during a chemical process?", "choices": ["electrons", "protons", "neutrons", "molecules"], "answer_idx": 0}
{"id": "LEAP_2004_4_10258", "prompt": "What is one way people are helping the environment?", "choices": ["They are planting trees to replace the ones that are cut.", "They are building more roads so more people can see natural areas.", "They are building more dumps to hold the trash we create.", "They are using their cars more to get to places faster."], "answer_idx": 0}
{"id": "Mercury_7268153", "prompt": "What is the function of hollow bones in birds?", "choices": ["to streamline birds for efficient flight", "to reduce the weight of birds for flight", "to store oxygen for high-altitude flight", "to make bones strong enough for flight"], "answer_idx": 1}
{"id": "Mercury_LBS10795", "prompt": "A screwdriver is used to pry the lid off a paint can. The resistance arm is 0.5 centimeters. The effort arm is 20 centimeters. What is the mechanical advantage of the screwdriver?", "choices": ["0.025", "10", "19.5", "40"], "answer_idx": 3}
{"id": "Mercury_7176208", "prompt": "Food provides calories needed by the body for energy. However, the body must use energy between meals when food is not consumed. What is the most likely response of the body when more energy is used than the calories consumed provide?", "choices": ["to increase blood flow to the limbs for energy production", "to release energy from lipids stored throughout the body", "to transform stored proteins into carbohydrates for energy", "to contract muscles to create heat energy for the body"], "answer_idx": 1}
{"id": "Mercury_7206063", "prompt": "The climate of an area would be expected to have the least fluctuations in temperatures where the", "choices": ["atmospheric nitrogen is low.", "vegetation is sparse.", "days are longest.", "humidity is high."], "answer_idx": 3}
{"id": "Mercury_SC_415028", "prompt": "Why would animals most likely have to leave an area during a drought?", "choices": ["to find mates", "to find shelter", "to escape predators", "to find water and food"], "answer_idx": 3}
{"id": "Mercury_400471", "prompt": "Secondary pollutants are produced in the environment by chemical reactions involving primary or emitted chemicals. Which of the following is a secondary pollutant?", "choices": ["carbon monoxide (CO)", "nitrogen oxide (NO)", "methane (CH_{4})", "ozone (O_{3})"], "answer_idx": 3}
{"id": "Mercury_7072625", "prompt": "The human brain is an organ that is made up of many tissues. This information can be used to determine that the brain is", "choices": ["unicellular.", "multicellular.", "part of a bacterial colony.", "able to function independently."], "answer_idx": 1}
{"id": "VASoL_2008_5_25", "prompt": "A bicyclist rides on a flat road and then stops pedaling but does not apply the brakes. The bicycle stops because of ___.", "choices": ["balance", "friction", "attraction", "magnetism"], "answer_idx": 1}
{"id": "Mercury_410275", "prompt": "One student rubs a balloon against his hair several times. Another student passes a comb through her hair several times. The students place the comb near the balloon and observe that the comb repels the balloon. Which is the most likely reason the comb is able to repel the balloon?", "choices": ["The balloon has a positive charge and the comb is neutral.", "The balloon and the comb have the same electrical charge.", "The balloon has a negative charge and the comb is neutral.", "The balloon and the comb have opposite electrical charges."], "answer_idx": 1}
{"id": "Mercury_SC_415413", "prompt": "How is weather related to climate?", "choices": ["Climate is the long-term average of a region's weather.", "Climate describes the weather of a large area.", "Weather is the long-term average of a region's climate.", "Weather describes the climate of a large area."], "answer_idx": 0}
{"id": "TIMSS_2007_4_pg34", "prompt": "Katie has a mixture of iron filings and sand. She wants to separate them. How can she do this?", "choices": ["Shake the mixture, and the iron filings will rise to the surface.", "Add water to the mixture, and the sand will dissolve in the water.", "Put the mixture through a sieve, and the sand will remain in the sieve.", "Pass a magnet over the mixture, and the magnet will attract the iron fillings."], "answer_idx": 3}
{"id": "NYSEDREGENTS_2015_4_17", "prompt": "Which process is common to most living things?", "choices": ["flying", "talking", "seeing", "reproducing"], "answer_idx": 3}
{"id": "Mercury_7016853", "prompt": "The angle of a ramp is changed several times during an experiment. Which tool is needed to measure the different angles?", "choices": ["compass", "protractor", "meter stick", "spring scale"], "answer_idx": 1}
{"id": "Mercury_SC_401817", "prompt": "All of these are examples of observation and measurement except", "choices": ["charting where birds fly.", "attracting birds with birdseed.", "counting the number of birds that fly by.", "illustrating the different birds that fly by."], "answer_idx": 1}
{"id": "MDSA_2007_5_51", "prompt": "The piping plover is a bird that builds its nest on sand dunes along the Atlantic Ocean. Which of these actions most likely damages the nests of the piping plover?", "choices": ["people fishing from a boat", "children playing in the ocean waves", "children digging holes along the sand dunes", "people walking on a sidewalk along the sand dunes"], "answer_idx": 2}
{"id": "ACTAAP_2010_7_17", "prompt": "Which is an effect that cities have on the weather?", "choices": ["Small numbers of plants cause rain to fall more often.", "Large numbers of houses cause the wind to be stronger.", "Small areas of open water cause fog to be more common.", "Large areas of pavement cause the temperature to be hotter."], "answer_idx": 3}
{"id": "Mercury_7008155", "prompt": "A \"shooting star\" is", "choices": ["a comet.", "a meteor.", "an asteroid.", "a small star."], "answer_idx": 1}
{"id": "NYSEDREGENTS_2015_8_19", "prompt": "Which type of organism converts wastes and dead materials into nutrients that can be used by plants?", "choices": ["carnivore", "herbivore", "decomposer", "producer"], "answer_idx": 2}
{"id": "Mercury_7148208", "prompt": "Biochemical reactions that require high temperatures to proceed are able to take place at body temperature within the cells of living organisms. Which factor is mainly responsible for allowing biochemical reactions to proceed at body temperature?", "choices": ["The cellular enzymes act as catalysts.", "The small size of cells keeps reactants together.", "The pH of the cytoplasm increases reaction rate.", "The reactants are present in small quantities in the cell."], "answer_idx": 0}
{"id": "Mercury_SC_400709", "prompt": "Which statement best compares gravity on the Moon to gravity on Earth?", "choices": ["Gravity on the Moon is greater because it is closer to the Sun.", "Gravity on the Moon is less because it is smaller than the Earth.", "Gravity on the Moon is less because it has less atmosphere than the Earth.", "Gravity on the Moon is greater because it has less mass than the Earth."], "answer_idx": 1}
{"id": "Mercury_412755", "prompt": "An enclosed 20 mL metal cylinder was filled with a gas sample at room temperature. The sample then was transferred to an empty 40 mL enclosed container, also at room temperature. After being transferred, the volume of the gas was", "choices": ["10 mL.", "20 mL.", "30 mL.", "40 mL."], "answer_idx": 3}
{"id": "Mercury_SC_401331", "prompt": "Melting, boiling, and freezing are examples of", "choices": ["physical changes.", "chemical changes.", "magnetic changes.", "electrical changes."], "answer_idx": 0}
{"id": "NYSEDREGENTS_2013_4_3", "prompt": "There is a shadow under a tree. Which form of energy must be present for the shadow to occur?", "choices": ["heat", "light", "sound", "mechanical"], "answer_idx": 1}
{"id": "Mercury_SC_413002", "prompt": "Seismometers measure quick changes that happen in the crust of our planet. Which of the following is a seismometer used to measure?", "choices": ["earthquake", "erosion", "flooding", "weathering"], "answer_idx": 0}
{"id": "Mercury_7042630", "prompt": "In some lakes, excessive blooms of algae appear when human activity causes degradation of water quality resulting in conditions more favorable for algae growth. Which human activity primarily causes this problem?", "choices": ["mining", "farming", "transportation", "manufacturing"], "answer_idx": 1}
{"id": "MCAS_2003_5_10", "prompt": "Drake has started a garden. What can Drake do to enrich the soil so that his plants will grow better?", "choices": ["remove earthworms", "add more water to the soil", "increase the amount of pesticide he uses", "mix decomposed plant matter into the soil"], "answer_idx": 3}
{"id": "TIMSS_2007_4_pg105", "prompt": "Which of these objects will rust?", "choices": ["wood chips", "plastic straws", "iron nails", "glass beads"], "answer_idx": 2}
{"id": "NYSEDREGENTS_2015_4_13", "prompt": "Which color baseball cap would absorb the most light on a sunny day?", "choices": ["pink", "black", "white", "yellow"], "answer_idx": 1}
{"id": "Mercury_7024203", "prompt": "Which body systems are most involved in the response when someone stubs his or her toe?", "choices": ["nervous and muscle", "muscle and endocrine", "nervous and digestive", "reproductive and circulatory"], "answer_idx": 0}
{"id": "Mercury_7007543", "prompt": "Which part of a sound wave measures loudness?", "choices": ["wavelength", "magnitude", "amplitude", "frequency"], "answer_idx": 2}
{"id": "Mercury_7241255", "prompt": "Neurons respond to stimuli and transmit impulses to coordinate body functions. Which of these indicates the rapid change in the membrane potential when a neuron is stimulated?", "choices": ["action potential", "resting potential", "refractory period", "threshold period"], "answer_idx": 0}
{"id": "Mercury_7222408", "prompt": "Materials that let electrons flow very easily from one atom to another", "choices": ["are called insulators.", "are called conductors.", "are called non-metals.", "are called resistors."], "answer_idx": 1}
{"id": "Mercury_7016240", "prompt": "Which is the most important safety measure to follow when using an acid in a classroom laboratory?", "choices": ["wearing protective clothing and goggles", "keeping the window open", "closing the door to the hall", "using bright fluorescent lights"], "answer_idx": 0}
{"id": "TIMSS_2007_8_pg57", "prompt": "In a deep valley on Earth, a person shouting will hear an echo as the sound is reflected back off the surrounding mountains. In a similar valley on the Moon, no echo will be heard. This is because", "choices": ["the gravitational pull on the Moon is too low", "the temperature on the Moon is too low", "there is no air on the Moon for the sound to travel through", "the mountains on the Moon cannot reflect sound"], "answer_idx": 2}
{"id": "MDSA_2007_8_23", "prompt": "The motion of a car accelerating in a straight line differs from the motion of a car moving in a straight line at a constant speed. Which change best describes acceleration of a car?", "choices": ["a change in the direction of the car", "a change in the distance the car travels", "the change in velocity divided by the time for that change", "the change in the time for the car to travel a distance"], "answer_idx": 2}
{"id": "MEA_2016_5_3", "prompt": "During which time of day are the highest temperatures most often recorded?", "choices": ["sunset", "afternoon", "sunrise", "night"], "answer_idx": 1}
{"id": "MEAP_2005_5_16", "prompt": "When butterfly eggs hatch, the young are called ___.", "choices": ["worms", "cocoons", "caterpillars", "little butterflies"], "answer_idx": 2}
{"id": "Mercury_7009818", "prompt": "Louis Pasteur's work in the nineteenth century on pasteurization greatly improved", "choices": ["the quality of food.", "the prediction of weather.", "the availability of medication.", "the effectiveness of vaccinations."], "answer_idx": 0}
{"id": "MCAS_2004_5_22", "prompt": "An earthworm was placed on top of a thick layer of moist topsoil in a pan. The pan was placed in a room with the lights on. How did the earthworm most likely respond to these conditions?", "choices": ["by burrowing under the soil", "by crawling around in the pan", "by staying where it was placed", "by trying to crawl out of the pan"], "answer_idx": 0}
{"id": "ACTAAP_2007_7_27", "prompt": "What is the liquid layer of Earth that lies beneath the mantle?", "choices": ["inner core", "outer core", "mesosphere", "asthenosphere"], "answer_idx": 1}
{"id": "MDSA_2008_5_25", "prompt": "Many natural resources are found in Maryland and the surrounding area. Some of these natural resources are renewable and some are nonrenewable. People use both kinds of resources in daily activities. Using natural resources often produces waste products. Burning fossil fuels, such as oil, coal, and gasoline produces pollution. Which type of pollution is most often produced by burning fossil fuels?", "choices": ["air pollution", "land pollution", "noise pollution", "water pollution"], "answer_idx": 0}
{"id": "TIMSS_1995_8_L5", "prompt": "When a bird sings, it is most likely singing in order to", "choices": ["frighten away other types of birds", "mark the bird's territory against the same type of bird", "attract insects", "wake up other animals"], "answer_idx": 1}
{"id": "Mercury_7217438", "prompt": "Coal is used for generating about 53% of the electrical energy in the United States. Which of these environmental issues is directly contributed to by the burning of coal?", "choices": ["beach erosion", "ozone depletion", "overfishing", "air pollution"], "answer_idx": 3}
{"id": "Mercury_411809", "prompt": "Which term correctly describes all of the following materials? salt water, vinegar, bronze, air, beach sand", "choices": ["compounds", "mixtures", "solutions", "elements"], "answer_idx": 1}
{"id": "Mercury_7188213", "prompt": "Isle Royale is a large island in Lake Superior. During the 1800s, most of the trees were removed, and the wolves and moose that lived on the island died. In the early 1900s, moose were reintroduced to the island. By 1925, the moose population on Isle Royale rose to about 2,000 individuals. Which best explains how the moose population grew so rapidly?", "choices": ["The death rate was greater than the birth rate.", "There was unlimited food for the moose to eat.", "The birth rate was constant and few moose died.", "There were no predators to control the population."], "answer_idx": 3}
{"id": "Mercury_SC_401800", "prompt": "Which is a characteristic Earth and the Moon have in common?", "choices": ["seas", "craters", "thunderstorms", "atmosphere"], "answer_idx": 1}
{"id": "Mercury_SC_406273", "prompt": "As Bobby entered a dark room, he pushed the switch on the wall to turn on the light. What makes the light turn on when Bobby pushes the switch?", "choices": ["electricity", "friction", "gravity", "magnetism"], "answer_idx": 0}
{"id": "NYSEDREGENTS_2010_8_7", "prompt": "Which human organ system eliminates liquid and gaseous wastes from the body?", "choices": ["circulatory", "endocrine", "excretory", "reproductive"], "answer_idx": 2}
{"id": "Mercury_7174668", "prompt": "When visiting the beach, Felicity observed that a breeze blew in from the ocean during the day and out toward the ocean at night. Which factor is most responsible for the direction of land and sea breezes in coastal regions?", "choices": ["the revolution of Earth around the Sun", "the uneven heating between the land and water", "the gravitational pull of Earth on the atmosphere", "the daily rise and fall of tides in a regular pattern"], "answer_idx": 1}
{"id": "NYSEDREGENTS_2013_8_16", "prompt": "Which pathway do most nutrients take after a person takes a bite of food?", "choices": ["digestive system -> circulatory system -> body cells", "circulatory system -> body cells -> digestive system", "digestive system -> body cells -> circulatory system", "circulatory system -> digestive system -> body cells"], "answer_idx": 0}
{"id": "MCAS_2005_5_33", "prompt": "Sound reaches our ears because sound makes air particles", "choices": ["heat up.", "cool down.", "slow down.", "vibrate."], "answer_idx": 3}
{"id": "Mercury_7056648", "prompt": "Which event is an example of conduction?", "choices": ["Sunlight travels from the Sun to warm Earth.", "Boiling water in a pot warms a spoon inside the pot.", "A fire in a fireplace warms the air in a room.", "Cold water is heated in a microwave oven."], "answer_idx": 1}
{"id": "NYSEDREGENTS_2013_8_43", "prompt": "Which type of energy is transferred from one object to another by simple machines?", "choices": ["mechanical", "chemical", "nuclear", "electrical"], "answer_idx": 0}
{"id": "AKDE&ED_2008_8_50", "prompt": "Which statement best describes how energy transfer within Earth's atmosphere can affect a weather condition?", "choices": ["During radiation, objects directly transfer heat to each other which affects the air temperature.", "During radiation, electromagnetic waves transfer heat and light energy which affects the air temperature.", "During convection, objects directly transfer heat to each other which affects the amount of precipitation.", "During convection, electromagnetic waves transfer heat and light energy which affects the amount of precipitation."], "answer_idx": 1}
{"id": "Mercury_7205363", "prompt": "What is the smallest part of a gold ring that is still gold?", "choices": ["an atom", "an electron", "a molecule", "a compound"], "answer_idx": 0}
{"id": "Mercury_SC_407507", "prompt": "Which tool should a carpenter use to measure the length of a wooden board?", "choices": ["balance", "meter stick", "thermometer", "graduated cylinder"], "answer_idx": 1}
{"id": "NYSEDREGENTS_2013_8_23", "prompt": "If an ecosystem's balance is disturbed by a volcanic eruption, what will most likely occur?", "choices": ["The ecosystem will not change from its original state.", "The ecosystem will eventually become balanced again.", "The consumers in the ecosystem will begin to consume carbon dioxide.", "The consumers in the ecosystem will begin to produce more oxygen."], "answer_idx": 1}
{"id": "TAKS_2009_5_20", "prompt": "One example of a trait passed from a parent plant to its offspring is ___.", "choices": ["the amount of water in the plant's environment", "the amount of sunlight shining on the plant", "the color of the flowers on the plant", "the nutrients in the soil where the plant grows"], "answer_idx": 2}
{"id": "MDSA_2010_8_8", "prompt": "Many organisms have structures for protection and survival. Which structure is most similar to tree bark?", "choices": ["bird beak", "bear claws", "human skin", "snake fangs"], "answer_idx": 2}
{"id": "NYSEDREGENTS_2013_8_13", "prompt": "The human respiratory system is responsible for removing", "choices": ["fat from cells", "carbon dioxide from blood", "hormones from glands", "nutrients from food"], "answer_idx": 1}
{"id": "NYSEDREGENTS_2013_8_8", "prompt": "Humans are protected from some infections by specialized cells which produce chemicals that", "choices": ["destroy microbes", "recycle nutrients", "allow locomotion", "coordinate movement"], "answer_idx": 0}
{"id": "MCAS_2011_5_10", "prompt": "Which two forms of energy could best be used to increase the temperature of a sheet of copper?", "choices": ["heat and light", "heat and sound", "light and magnetism", "electricity and sound"], "answer_idx": 0}
{"id": "ACTAAP_2014_7_10", "prompt": "Which gas is the most abundant in Earth's atmosphere?", "choices": ["oxygen", "nitrogen", "water vapor", "carbon dioxide"], "answer_idx": 1}
{"id": "Mercury_SC_408435", "prompt": "Which best explains why stars seen in the night sky are less bright than the Sun?", "choices": ["Other stars are farther from Earth than the Sun.", "Other stars are facing away from Earth.", "Other stars are smaller than the Sun.", "Other stars are producing less light."], "answer_idx": 0}
{"id": "Mercury_7245788", "prompt": "A scientist observed that the loss of plants near a stream resulted in more soil being washed downstream. How will the excess soil that travels downstream reduce biodiversity?", "choices": ["It will destroy the fish habitat.", "It will provide nutrients to algae.", "It will change the water temperature.", "It will introduce an invasive species."], "answer_idx": 0}
{"id": "NYSEDREGENTS_2015_8_25", "prompt": "When Earth's shadow falls on the Moon, the shadow causes a", "choices": ["high tide", "low tide", "lunar eclipse", "Moon phase"], "answer_idx": 2}
{"id": "MCAS_2004_8_20", "prompt": "A class conducts an experiment to determine the best color to paint a solar water heater that they plan to build. For their experimental test, the students have four identical cans. They paint one black, one green, one red, and one white. Each can is filled with 500 mL of 22\u00b0C water, and is allowed to sit in the sun for two hours. Which color can will have the greatest increase in water temperature?", "choices": ["black", "green", "red", "white"], "answer_idx": 0}
{"id": "Mercury_7207463", "prompt": "Which of these properties of water has the greatest effect on the water cycle?", "choices": ["neutral pH", "freezing and boiling points", "dissolves many substances", "forms six-sided crystals"], "answer_idx": 1}
{"id": "OHAT_2007_5_40", "prompt": "What causes day and night on Earth?", "choices": ["tilting of Earth's axis", "rotation of Earth on its axis", "movement of Earth around the sun", "movement of the sun around Earth"], "answer_idx": 1}
{"id": "NYSEDREGENTS_2008_8_33", "prompt": "Which process is an example of a physical change?", "choices": ["wood burning", "iron rusting", "ice melting", "milk souring"], "answer_idx": 2}
{"id": "MSA_2012_5_13", "prompt": "The water cycle requires energy. The main source of energy for the water cycle is", "choices": ["wind", "gravity", "the sun", "the moon"], "answer_idx": 2}
{"id": "Mercury_7211015", "prompt": "Which of these is the fundamental unit of life?", "choices": ["system", "organ", "tissue", "cell"], "answer_idx": 3}
{"id": "MCAS_1999_8_17", "prompt": "Which would be the most important to consider when selecting material for the walls and ceiling of a concert hall?", "choices": ["chemical properties", "mechanical properties", "thermal properties", "acoustical properties"], "answer_idx": 3}
{"id": "Mercury_7071978", "prompt": "When microorganisms deplete the oxygen in soil through respiration, the soil becomes", "choices": ["humus.", "anaerobic.", "compost.", "aerobic."], "answer_idx": 1}
{"id": "Mercury_414500", "prompt": "The National Aeronautics and Space Administration (NASA) is the agency responsible for the space program in the United States. What was the goal of NASA's Apollo program?", "choices": ["to search for life on planets other than Earth", "to land on a planet in another solar system", "to determine the composition the Sun", "to send a human to land on the Moon"], "answer_idx": 3}
{"id": "Mercury_7014000", "prompt": "A lack of control in the muscular system is most likely related to a problem in what other organ system?", "choices": ["nervous", "immune", "excretory", "digestive"], "answer_idx": 0}
{"id": "Mercury_SC_400224", "prompt": "The Russian thistle, commonly known as the tumbleweed, is a big, round plant with many branches and short, stiff leaves. This plant spreads a large number of seeds when it breaks off from its stalk. The thistle is most likely found in what kind of environment?", "choices": ["swamp", "prairie", "forest", "tundra"], "answer_idx": 1}
{"id": "NCEOGA_2013_8_29", "prompt": "Scientists find dinosaur fossils in the bottom rock layers of a cliff and mammal fossils in the middle rock layer of the cliff. Which could best be concluded from this evidence?", "choices": ["Dinosaurs ate plants.", "Dinosaurs were eaten by the mammals.", "Dinosaurs lived on Earth before the mammals.", "Dinosaurs and mammals lived at the same time."], "answer_idx": 2}
{"id": "LEAP_2002_8_10389", "prompt": "Joyce put 200 milliliters of water in a beaker, put a thermometer in it, and heated it until it started to boil. She recorded a temperature of 100\u00b0C when it started to boil. She repeated the process with 400 milliliters of water. What would be the temperature when the second sample started to boil?", "choices": ["twice as high as the first sample's", "slightly higher than the first sample's", "half as high as the first sample's", "the same as the first sample's"], "answer_idx": 3}
{"id": "Mercury_416507", "prompt": "A student wrote the following claim on a homework assignment: \"Eukaryotic cells need more lipids than prokaryotic cells.\" Which statement below provides the BEST support for her claim?", "choices": ["Eukaryotic cells have a nucleus.", "Eukaryotic cells make up multicellular organisms.", "Eukaryotic cells contain membrane-bound organelles.", "Eukaryotic cells perform cellular respiration."], "answer_idx": 2}
{"id": "VASoL_2008_3_35", "prompt": "A black bear eats many different things, including grasses, roots, and berries. It also eats insects, fish, and other small animals. Which of these BEST describes a black bear?", "choices": ["Omnivore", "Carnivore", "Herbivore", "Producer"], "answer_idx": 0}
{"id": "Mercury_7010798", "prompt": "A student finds a beaker with a chip in the rim. What should he do with the beaker?", "choices": ["use it and then dispose of it", "use it and then return it to where he got it", "dispose of the beaker and get a new one", "put it back where he found it and get a new one"], "answer_idx": 2}
{"id": "Mercury_7018078", "prompt": "The sum of protons and neutrons in the nucleus of an atom is called the", "choices": ["valence.", "mass number.", "chemical property.", "electrical charge."], "answer_idx": 1}
{"id": "Mercury_7141278", "prompt": "In which of the following are nutrients directly absorbed from the bloodstream?", "choices": ["cell", "organ", "organisms", "tissue"], "answer_idx": 0}
{"id": "Mercury_SC_400988", "prompt": "Making aluminum cans from recycled materials instead of raw materials is a wise choice because it", "choices": ["saves time.", "saves trees.", "creates energy.", "reduces pollution."], "answer_idx": 3}
{"id": "Mercury_SC_415415", "prompt": "What happens to climate and weather over a summer?", "choices": ["Weather varies more than climate.", "Climate varies more than weather.", "Climate varies, but weather stays the same.", "Weather and climate vary to the same degree."], "answer_idx": 0}
{"id": "NAEP_2009_4_S7+6", "prompt": "A thermometer shows that the outside air temperature is colder than the temperature at which water turns to ice. However, ice on the sidewalk melts. What probably caused this?", "choices": ["The air heating the sidewalk", "The sidewalk reflecting sunlight into the air", "The wind causing the ice on the sidewalk to melt", "The sunlight making the sidewalk warmer than the air"], "answer_idx": 3}
{"id": "Mercury_SC_401296", "prompt": "Which trait gives owls an advantage when hunting at night?", "choices": ["large eyes", "broad wings", "straight beak", "smooth feathers"], "answer_idx": 0}
{"id": "Mercury_SC_400406", "prompt": "Wood is considered a renewable resource because", "choices": ["oxygen is released by trees.", "trees can be replanted.", "there are many varieties of trees.", "trees are used for many purposes."], "answer_idx": 1}
{"id": "Mercury_7023275", "prompt": "Which event is an example of a chemical change?", "choices": ["fog rising off a river", "wood burning in a fireplace", "ice cream melting in the sunshine", "grinding peppercorn into pepper flakes"], "answer_idx": 1}
{"id": "Mercury_SC_405020", "prompt": "Oxygen-rich blood returns from the lungs to the heart. Which two systems are most directly involved in this process?", "choices": ["excretory and digestive", "circulatory and excretory", "digestive and respiratory", "respiratory and circulatory"], "answer_idx": 3}
{"id": "Mercury_405940", "prompt": "From simplest to most complicated, how are multicellular organisms organized?", "choices": ["organ system, organ, cell, tissue", "organ, tissue, cell, organ system", "tissue, cell, organ system, organ", "cell, tissue, organ, organ system"], "answer_idx": 3}
{"id": "Mercury_SC_405734", "prompt": "A student wants to find out whether storms with lightning produce more rain than storms without lightning. Which is the best way to answer this question?", "choices": ["average the amount of rain that fell during a lightning storm", "count number of lightning strikes during a one-hour period", "record rainfall amounts in storms with and without lightning", "calculate the number of fires that are caused by lightning strikes"], "answer_idx": 2}
{"id": "MCAS_2005_8_20", "prompt": "How many different elements are in the 20 compound sodium carbonate (Na2CO3)?", "choices": ["1", "3", "6", "7"], "answer_idx": 1}
{"id": "Mercury_7197960", "prompt": "In a lab, a bacterial strain shows resistance to an antibiotic. The presence of the antibiotic allows an existing variant within the genetic code to help the bacteria survive. The resistance of bacteria due to an existing genetic variant can be best described as which process?", "choices": ["natural selection", "selective breeding", "asexual reproduction", "behavioral adaptation"], "answer_idx": 0}
{"id": "TIMSS_2003_8_pg57", "prompt": "Which of the following is NOT a mixture?", "choices": ["Smoke", "Sugar", "Milk", "Paint"], "answer_idx": 1}
{"id": "TAKS_2009_5_29", "prompt": "Which two properties of a crayon will stay about the same after the crayon is melted?", "choices": ["Shape and physical state", "Temperature and hardness", "Color and mass", "Thickness and texture"], "answer_idx": 2}
{"id": "NYSEDREGENTS_2010_8_8", "prompt": "Which human organ system produces hormones to regulate growth, development, and reproduction?", "choices": ["circulatory", "digestive", "nervous", "endocrine"], "answer_idx": 3}
{"id": "Mercury_7219030", "prompt": "As some organisms die, their remains become buried by mud and are eventually compressed into a type of rock. Which of these is a rock type that forms from this process?", "choices": ["igneous", "sedimentary", "magma", "metamorphic"], "answer_idx": 1}
{"id": "Mercury_7141890", "prompt": "Based on the organization of living things, tissues", "choices": ["form systems.", "are made of cells.", "are made of organs.", "do the work of cells."], "answer_idx": 1}
{"id": "Mercury_7075215", "prompt": "Which body system is directly threatened when bacteria infect the lungs?", "choices": ["muscular", "nervous", "respiratory", "excretory"], "answer_idx": 2}
{"id": "Mercury_SC_416173", "prompt": "Where do good bacteria grow to help keep people healthy?", "choices": ["in the brain", "in the blood", "on the skin", "on the bones"], "answer_idx": 2}
{"id": "Mercury_7283885", "prompt": "The human immunodeficiency virus (HIV) causes AIDS. The first known human cases AIDS were in Africa in the late 1950s. Since then, tens of millions of people have died from the disease, and tens of millions more people all over the world are infected. Which term best describes the disease AIDS?", "choices": ["isolated cases", "outbreak", "epidemic", "pandemic"], "answer_idx": 3}
{"id": "MCAS_1998_4_7", "prompt": "7. What is the cause of most earthquakes?", "choices": ["the rotation of Earth", "the direction of the wind", "the pull of Earth's gravity", "the movement of plates on Earth's crust"], "answer_idx": 3}
{"id": "OHAT_2007_8_42", "prompt": "Which phenomena occur as a result of the gravitational attraction between the moon and Earth?", "choices": ["eclipses", "ocean tides", "seasonal changes", "phases of the moon"], "answer_idx": 1}
{"id": "AKDE&ED_2012_8_7", "prompt": "Which statement best describes how the circulatory system and respiratory system can work together?", "choices": ["Toxins are removed from the bloodstream by the liver.", "The stomach signals for the production of gastric juices.", "Food molecules are transported to the organs of the body.", "Gases are exchanged between the lungs and blood vessels."], "answer_idx": 3}
{"id": "Mercury_LBS10993", "prompt": "Animals depend on plants for many things, including food. What do plants depend on from animals?", "choices": ["energy for photosynthesis", "pest control", "carbon dioxide", "oxygen"], "answer_idx": 2}
{"id": "Mercury_7084018", "prompt": "Less force is required to launch a spaceship from the surface of the Moon than to launch an identical ship from the surface of Earth because", "choices": ["the Moon has a smaller surface area than Earth.", "the mass of an object on Earth is greater than on the Moon.", "the gravitational field of the Moon is less than that of Earth.", "the atmosphere of the Moon is much thinner than that of Earth."], "answer_idx": 2}
{"id": "Mercury_SC_415399", "prompt": "Two of Earth's plates pushed together, and the ground moved. What happened?", "choices": ["an earthquake", "a landslide", "a volcano", "an avalanche"], "answer_idx": 0}
{"id": "Mercury_7071803", "prompt": "Which of these were formed by glaciers that flowed through the Ruby Mountain region in northeastern Nevada?", "choices": ["lakes", "deserts", "volcanic necks", "V-shaped valleys"], "answer_idx": 0}
{"id": "MCAS_2011_8_17683", "prompt": "A student prepared the following list of characteristics about a cellular organelle. present in animal cells present in plant cells helps make energy available to the cell Which of the following cellular structures is the student describing?", "choices": ["cell wall", "chloroplast", "mitochondrion", "nucleus"], "answer_idx": 2}
{"id": "Mercury_SC_408439", "prompt": "Brian knows deserts get less rain than other ecosystems. However, he also knows that plants can survive in the desert. Which characteristic of a plant most likely helps it live in a desert?", "choices": ["the ability to store water", "the ability to attract insects", "the ability to stop predators", "the ability to drop its leaves"], "answer_idx": 0}
{"id": "Mercury_7115290", "prompt": "After a volcanic eruption, it takes a long time for large ecosystems to fully recover. Which statement best explains why the development takes so long?", "choices": ["Space is limited for growth.", "The quality of light is low.", "Soil must be created.", "Minerals are destroyed."], "answer_idx": 2}
{"id": "Mercury_7007613", "prompt": "The atomic number of an element refers to the number of", "choices": ["electrons in the outer shell.", "neutrons in the outer shell.", "electrons in the nucleus.", "protons in the nucleus."], "answer_idx": 3}
{"id": "Mercury_7161298", "prompt": "In an ecosystem, not all of the energy that is available is used by the organisms. Some energy becomes unavailable before it can be transferred to organisms in the next trophic level. How does the energy most likely become unavailable?", "choices": ["The energy is stored as food.", "The energy is dissipated as heat.", "The energy is trapped in dead organisms.", "The energy is moved to another ecosystem."], "answer_idx": 1}
{"id": "Mercury_180198", "prompt": "Which of the following is a direct result of Earth's tilt on its axis?", "choices": ["tides", "seasons", "weather", "gravity"], "answer_idx": 1}
{"id": "MEAP_2004_8_1", "prompt": "Tony always drinks water before and after his long bike rides. Why does his body need water when he exercises?", "choices": ["Drinking water after exercise allows the body to sleep.", "Drinking water after exercise helps to replace lost fluids.", "Drinking water before exercise helps increase the heart rate.", "Drinking water before exercise prevents the body from sweating."], "answer_idx": 1}
{"id": "LEAP_2001_4_10240", "prompt": "On a field trip in a wooded area, you see a small, strange object. You wonder whether is is a live animal. The best way to find out is to observe the object to see if it", "choices": ["has an odor.", "has separate parts.", "can make a noise and has a lifelike color.", "carries out basic life functions."], "answer_idx": 3}
{"id": "AKDE&ED_2012_4_2", "prompt": "Liquid cooking oil was poured into a container. Which statement best describes a property of the cooking oil after it was poured into the container?", "choices": ["Its color changed.", "Its mass increased.", "Its volume stayed the same.", "Its temperature quickly increased."], "answer_idx": 2}
{"id": "AKDE&ED_2008_8_18", "prompt": "The Sun heats the atmosphere of Earth unevenly. Which of the following is the most likely result of this uneven heating?", "choices": ["Convection in the atmosphere causes a change in air density, resulting in winds.", "Conduction through the atmosphere causes evaporation to occur over oceans, resulting in rain.", "Radiation from the Sun will reflect through the atmosphere back into space resulting in cooler evenings.", "Radiation from the Sun will cause atmospheric moisture to collect over mountain ranges resulting in snowfall."], "answer_idx": 0}
{"id": "Mercury_400347", "prompt": "A 20-N force acts on a 5-kg object at rest. How fast will the object accelerate on a frictionless surface?", "choices": ["4 m/s^2", "15 m/s^2", "25 m/s^2", "100 m/s^2"], "answer_idx": 0}
{"id": "Mercury_7001313", "prompt": "Increasing and revising scientific knowledge of different types of bacteria will most likely enable scientists to develop ways to", "choices": ["help patients spend less time in the emergency room.", "aid research students who are studying complex organisms.", "help make medicines from newly discovered plants.", "develop specialized antibiotics that are directed at single-celled organisms."], "answer_idx": 3}
{"id": "NYSEDREGENTS_2008_8_18", "prompt": "What are produced in both the male and female reproductive systems in humans?", "choices": ["sperm", "nutrients", "fertilized eggs", "sex cells"], "answer_idx": 3}
{"id": "Mercury_7026810", "prompt": "The burning of fossil fuels in cities results in high levels of air pollution. Which urban design would best help reduce air pollution?", "choices": ["numerous park areas", "frequent trash recycling", "efficient public transportation", "effective street lighting"], "answer_idx": 2}
{"id": "Mercury_SC_415352", "prompt": "Which is an inherited trait?", "choices": ["dimples", "scrapes", "short hair", "dirty fingernails"], "answer_idx": 0}
{"id": "Mercury_SC_413632", "prompt": "How is xylem similar to phloem in a plant?", "choices": ["They both take in water from the soil.", "They both transport materials through the plant.", "They both make sugar in the leaves.", "They both store waste products in the plant cells."], "answer_idx": 1}
{"id": "Mercury_SC_408881", "prompt": "In a recycling program, people can separate paper from their other trash. The paper is sent to factories and turned into new products. What does paper recycling help conserve the most?", "choices": ["air", "gasoline", "trees", "water"], "answer_idx": 2}
{"id": "MSA_2013_5_15", "prompt": "Water cycles through three states of matter on Earth. What has the greatest effect on the state of matter of water?", "choices": ["tides", "gravity", "the sun", "the moon"], "answer_idx": 2}
{"id": "Mercury_SC_401316", "prompt": "Which physical feature exists both on Earth and on the Moon?", "choices": ["lakes", "forests", "mountains", "clouds"], "answer_idx": 2}
{"id": "TIMSS_2003_8_pg99", "prompt": "Animals and plants are made up of a number of different chemical elements. What happens to all of these elements when animals and plants die?", "choices": ["They die with the animal or plant.", "They evaporate into the atmosphere.", "They are recycled back into the environment.", "They change into different elements."], "answer_idx": 2}
{"id": "Mercury_405056", "prompt": "Students are comparing different rocks. What do all rocks have in common?", "choices": ["Rocks are made of one or more minerals.", "Rocks are made of two or more elements.", "Rocks are made of magma and sediments.", "Rocks are made of sand changed by pressure."], "answer_idx": 0}
{"id": "Mercury_7113978", "prompt": "What is the most likely result of large-scale agricultural fertilization on aquatic systems?", "choices": ["increased fish populations", "more biodiversity over time", "less oxygen available for fish", "reduced water levels"], "answer_idx": 2}
{"id": "Mercury_7041388", "prompt": "In order for magma to be converted to igneous rock, which actions must occur?", "choices": ["melting and cooling", "heating and pressure", "weathering and erosion", "crystallization and cooling"], "answer_idx": 3}
{"id": "NYSEDREGENTS_2012_4_23", "prompt": "Trees start as seeds and grow into mature trees that produce more seeds. This pattern represents a", "choices": ["food chain", "life cycle", "food supply", "life span"], "answer_idx": 1}
{"id": "NYSEDREGENTS_2015_8_1", "prompt": "Which sequence identifies the levels of organization of body structures in a human from simplest to most complex?", "choices": ["cell -> organ -> tissue -> organ system", "organ system -> cell -> tissue -> organ", "tissue -> organ -> organ system -> cell", "cell -> tissue -> organ -> organ system"], "answer_idx": 3}
{"id": "Mercury_7238893", "prompt": "A cell completes the synthesization of a protein by adding a carbohydrate to the protein's structure. At which site in the cell is the carbohydrate added?", "choices": ["the nucleus", "a ribosome", "a mitochondrion", "the Golgi apparatus"], "answer_idx": 3}
{"id": "Mercury_7018095", "prompt": "All atoms of an element have in their nuclei the same number of", "choices": ["electrons.", "isotopes.", "molecules.", "protons."], "answer_idx": 3}
{"id": "Mercury_SC_408344", "prompt": "Henry learned that without the right kind of energy, plants cannot survive. What form of energy is used by plants to perform photosynthesis?", "choices": ["electrical", "light", "mechanical", "wind"], "answer_idx": 1}
{"id": "Mercury_7171955", "prompt": "As a corn plant ages, its leaves grow. Which process is directly responsible for the growth of these leaves?", "choices": ["the division of cells in the plant", "the release of oxygen from the plant", "the absorption of carbon dioxide in the stem", "the transportation of nutrients from the roots"], "answer_idx": 0}
{"id": "Mercury_7013895", "prompt": "Which scientist is best known for research that led to the modern understanding of the atom?", "choices": ["Newton", "Dalton", "Galileo", "Copernicus"], "answer_idx": 1}
{"id": "MCAS_2011_8_17682", "prompt": "Which body system typically recognizes, attacks, and destroys foreign cells or substances that may cause disease?", "choices": ["digestive", "excretory", "immune", "respiratory"], "answer_idx": 2}
{"id": "Mercury_7194320", "prompt": "Cell membranes allow some molecules to move freely across the membrane, while other molecules are restricted. Which term best describes this capability of a cell membrane?", "choices": ["semipermeable", "impervious", "resilient", "unyielding"], "answer_idx": 0}
{"id": "Mercury_7029785", "prompt": "Which statement describes the transfer of energy when an ice cube is placed in a cup of hot tea?", "choices": ["Heat flows from the tea to the ice.", "Cold flows from the ice to the tea.", "Cold flows from the ice, and heat flows from the tea.", "Heat flows simultaneously between the ice and the tea."], "answer_idx": 0}
{"id": "Mercury_7284008", "prompt": "Which is the most cooperative relationship between species?", "choices": ["mutualism", "predation", "parasitism", "coexistence"], "answer_idx": 0}
{"id": "Mercury_402093", "prompt": "A dog rolls over and receives a treat. The dog rolls over again. This is an example of", "choices": ["learned behavior.", "adaptive behavior.", "inherited behavior.", "instinctive behavior."], "answer_idx": 0}
{"id": "Mercury_401313", "prompt": "Which type of rock is formed when particles are compacted and cemented together?", "choices": ["igneous", "metallic", "metamorphic", "sedimentary"], "answer_idx": 3}
{"id": "Mercury_SC_405490", "prompt": "Tree roots can grow into rock and break it apart. Water can freeze in the cracks of rock, causing it to break apart. How are these two processes alike?", "choices": ["Both are forces.", "Both affect weather.", "Both form new kinds of rock.", "Both are forms of weathering."], "answer_idx": 3}
{"id": "Mercury_7160528", "prompt": "Energy is absorbed and released through endothermic and exothermic processes. Which is an example of an exothermic process?", "choices": ["ice melting", "ice sublimating", "water evaporating", "water freezing"], "answer_idx": 3}
{"id": "TIMSS_2007_8_pg130", "prompt": "Where is most fresh (non-salty) water on Earth located?", "choices": ["oceans", "rivers", "lakes", "polar ice caps"], "answer_idx": 3}
{"id": "Mercury_7083773", "prompt": "When a molecule is separated into its component parts, it forms", "choices": ["compounds.", "atoms.", "protons.", "ions."], "answer_idx": 1}
{"id": "Mercury_7188860", "prompt": "The universe is believed to be approximately 14 billion years old. As a result of gravitational attraction, which most likely developed first after the Big Bang?", "choices": ["a planet", "a comet", "a moon", "a star"], "answer_idx": 3}
{"id": "NCEOGA_2013_5_14", "prompt": "Which is a function of the cardiovascular system?", "choices": ["to move water throughout the body", "to provide structural support for the body", "to eliminate waste from the body", "to transport gases throughout the body"], "answer_idx": 3}
{"id": "Mercury_7113803", "prompt": "When a fern reproduces with spores, the offspring", "choices": ["will be genetically identical to the parent plant.", "will be better able to adapt to the environment.", "will have half the genetic materials of the parent plant.", "will have twice the genetic materials of the parent plant."], "answer_idx": 0}
{"id": "Mercury_SC_401136", "prompt": "The process of water changing from its liquid state to a gas in the water cycle is known as", "choices": ["precipitation.", "evaporation.", "condensation.", "translation."], "answer_idx": 1}
{"id": "LEAP__7_10342", "prompt": "In which situation would osmosis most likely occur in cells?", "choices": ["across a permeable membrane that separates solutions of the same concentration", "across a permeable membrane that separates solutions of different concentrations", "across a nonpermeable membrane that separates solutions of the same concentration", "across a nonpermeable membrane that separates solutions of different concentrations"], "answer_idx": 1}
{"id": "Mercury_SC_405838", "prompt": "A scientist is watching birds from far away. Which object is the scientist most likely using to watch the birds?", "choices": ["goggles", "binoculars", "sunglasses", "microscope"], "answer_idx": 1}
{"id": "NYSEDREGENTS_2008_8_26", "prompt": "Studies of earthquake waves have helped scientists determine the", "choices": ["structure of Earth's interior", "depth of the oceans", "cause of dinosaur extinction", "age of Earth"], "answer_idx": 0}
{"id": "MCAS_1999_4_15", "prompt": "Needles on a cactus plant are actually leaves. This needle shape helps the plant survive by", "choices": ["catching food.", "preventing water loss.", "staying in place.", "reproducing."], "answer_idx": 1}
{"id": "Mercury_SC_414155", "prompt": "Compost piles have many parts, such as leaves, moisture, vegetables, and microorganisms. Which part of a compost pile breaks down materials and adds nutrients to the soil?", "choices": ["leaves", "moisture", "vegetables", "microorganisms"], "answer_idx": 3}
{"id": "CSZ_2008_8_12", "prompt": "A piece of pine wood floats on the surface of a lake because the water exerts", "choices": ["an upward force equal to the weight of the wood.", "a downward force equal to the weight of the wood.", "an upward force equal to the weight of the displacement water.", "a downward force equal to the weight of the displacement water."], "answer_idx": 2}
{"id": "CSZ_2005_5_CSZ20517", "prompt": "All living things contain which element?", "choices": ["helium.", "sodium.", "copper.", "carbon."], "answer_idx": 3}
{"id": "Mercury_SC_406543", "prompt": "A student performed an experiment to see how long it would take for a cup of water to freeze. Which information would another student most likely need in order to perform the same experiment?", "choices": ["the time to begin", "the volume of the cup", "the temperature of the ice", "the type of thermometer to use"], "answer_idx": 1}
{"id": "Mercury_SC_406688", "prompt": "A student wants to know which type of soil holds the most water. Which action should the student most likely do to answer the question?", "choices": ["compare how the soils are alike", "put the soils into different groups", "record the weight of the soil", "watch how quickly the soil drains"], "answer_idx": 3}
{"id": "Mercury_7205748", "prompt": "Which of these is required to support the theory of star formation?", "choices": ["laws passed by the government", "Internet sites discussing star formation", "pictures of stars of different ages", "evaluation of data by many scientists"], "answer_idx": 3}
{"id": "Mercury_7007473", "prompt": "The frequency of a wave is measured in", "choices": ["hertz.", "meters.", "hertz/second.", "meters/minute."], "answer_idx": 0}
{"id": "AKDE&ED_2012_4_14", "prompt": "Which process causes the fastest changes to the surface of Earth?", "choices": ["a large glacier forming on a mountain", "strong winds wearing away a rock cliff", "a major earthquake happening in a mountain range", "many waves on a lake moving pebbles onto a beach"], "answer_idx": 2}
{"id": "Mercury_7008348", "prompt": "Organisms contribute to the water cycle mainly through the process of", "choices": ["irrigation.", "evaporation.", "precipitation.", "transpiration."], "answer_idx": 3}
{"id": "Mercury_SC_401838", "prompt": "Which of these tools is most helpful to a scientist observing very small bacteria?", "choices": ["ruler", "telescope", "microscope", "meter stick"], "answer_idx": 2}
{"id": "Mercury_7018428", "prompt": "Apple slices were divided evenly between two identical metal boxes. A lighted 20-watt incandescent light bulb was placed in box A, and a lighted 20-watt fluorescent light was placed in box B. The apple slices in box A dried faster than those in box B because", "choices": ["fluorescent light is a luminous light.", "incandescent light produces more heat.", "fluorescent light has a lower frequency.", "incandescent light causes a chemical reaction."], "answer_idx": 1}
{"id": "Mercury_SC_LBS10272", "prompt": "What season is it in the United States when the South Pole is tilted toward the Sun?", "choices": ["summer", "fall", "winter", "spring"], "answer_idx": 2}
{"id": "Mercury_411737", "prompt": "Which of these colors of visible light has the shortest wavelength?", "choices": ["red", "green", "violet", "yellow"], "answer_idx": 2}
{"id": "MCAS_2011_8_17696", "prompt": "Which of the following units best represents the density of an object?", "choices": ["kg", "hr", "m/s^2", "g/cm^3"], "answer_idx": 3}
{"id": "Mercury_400060", "prompt": "Which statement below best explains why several fossils of sea organisms were discovered buried deep in an area of dry land?", "choices": ["The fossils changed locations.", "The area had a shift in climate.", "The land was once underwater.", "A glacier once covered the area."], "answer_idx": 2}
{"id": "Mercury_7094395", "prompt": "Last year Steve was shorter than his brother. This year Steve is taller than his brother. What cell process is directly responsible for Steve's growth?", "choices": ["diffusion", "mitosis", "osmosis", "respiration"], "answer_idx": 1}
{"id": "Mercury_402634", "prompt": "In which state are molecules of a substance arranged in the most orderly way?", "choices": ["gas", "liquid", "plasma", "solid"], "answer_idx": 3}
{"id": "Mercury_7218908", "prompt": "Weather stations built in urban areas can be influenced by the human-made structures that surround these stations. Some of these weather stations used to determine mean temperatures in the United States have had the validity of the data questioned. Which human-produced effect could these urban weather stations be measuring?", "choices": ["heat island", "rain shadow", "land breeze", "cold front"], "answer_idx": 0}
{"id": "Mercury_7037275", "prompt": "How is the mass of an atom calculated?", "choices": ["add the number of protons to the number of electrons", "add the number of protons to the number of neutrons", "subtract the number of protons from the number of neutrons", "subtract the number of electrons from the sum of protons and neutrons"], "answer_idx": 1}
{"id": "LEAP__8_10366", "prompt": "Over a long period, some flowering plants have become dependent on honey bees for pollination. In recent years, a form of mite has infected and killed the honey bees in many areas of the country. Since this has happened, the once bee-dependent plants with the best chance of surviving are those that", "choices": ["grow taller so that the few remaining honey bees will find them.", "change their flowers so that wind will fertilize them.", "have always attracted many other insects as wells as honey bees.", "have seeds that stay alive for a long time in the environment."], "answer_idx": 2}
{"id": "Mercury_7012495", "prompt": "Which of these atomic structures has the least amount of mass?", "choices": ["an ion", "a proton", "a neutron", "an electron"], "answer_idx": 3}
{"id": "Mercury_7210350", "prompt": "An increase of carbon dioxide in Earth's atmosphere is most likely to have which effect?", "choices": ["decreased variations in day length", "increased average air temperature", "increased burn rate for incoming meteoroids", "decreased rate of ozone layer destruction"], "answer_idx": 1}
{"id": "Mercury_SC_LBS10270", "prompt": "Which of the following is an inherited human trait?", "choices": ["eye color", "sleep patterns", "sense of balance", "sense of humor"], "answer_idx": 0}
{"id": "Mercury_SC_405090", "prompt": "Snow turns to liquid water when it", "choices": ["freezes.", "melts.", "condenses.", "evaporates."], "answer_idx": 1}
{"id": "NYSEDREGENTS_2015_8_34", "prompt": "Which energy source is nonrenewable?", "choices": ["sunlight", "biomass", "wind", "fossil fuel"], "answer_idx": 3}
{"id": "Mercury_402102", "prompt": "The Moon is in orbit around Earth. What keeps the Moon from changing its orbit?", "choices": ["friction", "gravity", "weight", "rotation"], "answer_idx": 1}
{"id": "Mercury_7220430", "prompt": "Which form of water, when present in the atmosphere, is most likely to contribute to global warming?", "choices": ["cloud", "rain", "vapor", "snow"], "answer_idx": 2}
{"id": "AKDE&ED_2008_8_31", "prompt": "Which statement explains why ducklings follow their mother when swimming across a pond?", "choices": ["Survival behavior is acquired by interaction with the parent duck.", "Survival behavior is learned by interacting with their environment.", "Inherited behavior is genetically obtained through their environment.", "Inherited behavior is genetically passed on from parents to offspring."], "answer_idx": 3}
{"id": "TAKS_2009_8_29", "prompt": "Some students measure the mass of a small pile of leaves before and after the leaves decompose. Each time the students measure the mass, they place a container with the decomposing leaves on a balance. Before recording the mass of the leaves, the students must do which of the following?", "choices": ["Subtract the mass of the container", "Add leaves from other plants to the container", "Allow the leaves to settle in the container for a few days", "Use a metric ruler to measure the volume of the container"], "answer_idx": 0}
{"id": "Mercury_7137480", "prompt": "Ava conducted an experiment to determine respiratory rates during different activities. She counted the number of breaths per minute. Ava noted that the number of breaths increases as physical activity increases. Why is there an increase in the number of breaths per minute as activity increases?", "choices": ["As activity increases, more oxygen is exhaled.", "As activity increases, breathing becomes more efficient.", "As activity increases, the oxygen needs of cells increase.", "As activity increases, the rate of the heart beating increases."], "answer_idx": 2}
{"id": "MCAS_2015_8_20", "prompt": "The temperature in a classroom is 15\u00b0C (59\u00b0F). The teacher turns the thermostat to 20\u00b0C (68\u00b0F) and keeps the door closed. Which of the following statements best describes the change that occurs as the temperature in the room increases to 20\u00b0C?", "choices": ["Cold air molecules collide to generate heat energy.", "Cold energy in the room transforms into heat energy.", "The room becomes warmer as heat energy is added to the room.", "The room becomes warmer as cold energy is pushed out of the room."], "answer_idx": 2}
{"id": "Mercury_7069388", "prompt": "A flat piece of paper has a mass of 5 grams. When the paper is crumpled into a ball, the mass of the crumpled paper is", "choices": ["much more than that of the flat paper.", "slightly more than that of the flat paper.", "the same as that of the flat paper.", "slightly less than that of the flat paper."], "answer_idx": 2}
{"id": "TIMSS_2003_4_pg87", "prompt": "Minerals are used for making many things including jewelry, chalk, and concrete. Where do we get the minerals needed to make these things?", "choices": ["from air", "from wood", "from rocks", "from crops"], "answer_idx": 2}
{"id": "Mercury_7194495", "prompt": "Scientists have observed that, even within the same nest, some young birds call louder than others. Which describes how a louder cry helps to ensure survival?", "choices": ["Lung capacity is increased.", "Exposure to bacteria is increased.", "Parents are able to identify the nest.", "Parents respond by giving more food."], "answer_idx": 3}
{"id": "OHAT_2008_8_15", "prompt": "Two galaxies are interacting with each other. What is the force that draws these two galaxies toward each other?", "choices": ["friction", "gravity", "electricity", "magnetism"], "answer_idx": 1}
{"id": "AKDE&ED_2008_8_49", "prompt": "Which procedure correctly describes materials combining?", "choices": ["Salt and sand are added to hot water and stirred making a mixture.", "Oil and water are placed in a sealed bottle and shaken making a compound.", "Sugar and water are added to flour and cooked in an oven making an element.", "Soil and water are shaken in a container and left to separate forming two elements."], "answer_idx": 0}
{"id": "Mercury_SC_408746", "prompt": "Plants growing in a pond release a gas that fish need to survive. Which gas do the plants release that fish use?", "choices": ["helium", "hydrogen", "nitrogen", "oxygen"], "answer_idx": 3}
{"id": "ACTAAP_2009_7_9", "prompt": "A ball rolling on the ground is observed to slow down and stop. Based on Newton's first law of motion, what is the best conclusion?", "choices": ["An object in motion eventually stops.", "The ball must have been going slightly uphill.", "The ball did not have enough mass to keep going.", "There must have been an outside force acting on the ball."], "answer_idx": 3}
{"id": "TIMSS_2011_8_pg98", "prompt": "What is the chemical formula for carbon dioxide?", "choices": ["CO", "CO2", "C", "O2"], "answer_idx": 1}
{"id": "NYSEDREGENTS_2010_4_7", "prompt": "A student rubs his hands together to warm them. His hands get warm due to", "choices": ["friction", "gravity", "magnetism", "sound"], "answer_idx": 0}
{"id": "Mercury_7263655", "prompt": "Scientists studying migrating birds and homing pigeons have discovered that they navigate by monitoring differences in the intensity and inclination of Earth's magnetic field. Special cells in bird beaks can detect these changes as the birds fly over Earth's surface. Which metal did the scientists find in the cells that birds use as a magnetometer?", "choices": ["iron", "gold", "mercury", "aluminum"], "answer_idx": 0}
{"id": "VASoL_2011_5_16", "prompt": "A scientist found a fossil of an organism that had gills. When the organism was living, the area in which it lived was most likely covered by ___.", "choices": ["forest", "grassland", "bare rock", "water"], "answer_idx": 3}
{"id": "Mercury_SC_400021", "prompt": "Which is the best way to help protect the environment?", "choices": ["wash hands before each meal", "do a science project about energy", "ride a bike to school instead of riding in a car", "pack a lunch instead of buying a school lunch"], "answer_idx": 2}
{"id": "VASoL_2009_5_36", "prompt": "An electric motor is designed to turn electrical energy into ___.", "choices": ["solar energy", "potential energy", "static electricity", "mechanical energy"], "answer_idx": 3}
{"id": "Mercury_SC_405154", "prompt": "If a student playing the drums hits the drums with greater force, the sound would be", "choices": ["quieter.", "louder.", "lower in pitch.", "higher in pitch."], "answer_idx": 1}
{"id": "Mercury_7128853", "prompt": "As the loudness of a sound wave increases, which will also increase?", "choices": ["amplitude", "frequency", "velocity", "wavelength"], "answer_idx": 0}
{"id": "Mercury_7044240", "prompt": "Telescopes use lenses to observe distant objects such as stars. Which term best describes what happens when lenses bend and concentrate light?", "choices": ["reflecting", "polarizing", "diffracting", "refracting"], "answer_idx": 3}
{"id": "Mercury_407661", "prompt": "Which of these must occur when a substance goes through a chemical change?", "choices": ["The substance gets larger.", "The substance changes phases.", "The substance changes shape.", "The substance forms a new substance."], "answer_idx": 3}
{"id": "Mercury_7234518", "prompt": "Scientists use ice cores to identify and explain previous climatic trends. By correlating climatic conditions recorded in the ice, with solid, nonsnow particles also found in the ice, scientists can help to predict the climatic impact of which phenomena?", "choices": ["atmospheric carbon dioxide concentration changes", "radioactive decay rate changes in the outer core", "volcanic eruptions", "magnetic pole reversals"], "answer_idx": 2}
{"id": "Mercury_7179340", "prompt": "Coal, oil, and natural gas have high potential energies, which makes them valuable energy resources. In order to benefit from the energy available in these fossil fuels, the potential energy is converted most directly into which type of energy?", "choices": ["chemical", "electrical", "solar", "thermal"], "answer_idx": 3}
{"id": "OHAT_2007_8_44", "prompt": "What change would occur if Earth's rate of rotation significantly increased?", "choices": ["The year would be shorter.", "The year would be longer.", "The day would be shorter.", "The day would be longer."], "answer_idx": 2}
{"id": "Mercury_7099225", "prompt": "Humans can do many things to impact the environment. Which of these is an example of how humans negatively impact the environment?", "choices": ["planting more trees", "burning less fossil fuel", "reducing beach erosion", "increasing water runoff"], "answer_idx": 3}
{"id": "Mercury_SC_400183", "prompt": "Eyeglasses help a nearsighted person see as a result of", "choices": ["absorption.", "diffraction.", "reflection.", "refraction."], "answer_idx": 3}
{"id": "Mercury_7206623", "prompt": "A student measures the rising temperature of heated water for 20 minutes in two-minute intervals. Which of these tools will best help the student organize the data?", "choices": ["flow chart", "pie chart", "data table", "bar graph"], "answer_idx": 2}
{"id": "Mercury_7026513", "prompt": "A rock formation in a land area contains fossils. Over time, tremendous heat and pressure change the formation to produce a harder rock formation without fossils. Which change in rock type has occurred in this land area?", "choices": ["Igneous rock has turned into sedimentary rock.", "Igneous rock has turned into metamorphic rock.", "Sedimentary rock has turned into igneous rock.", "Sedimentary rock has turned into metamorphic rock."], "answer_idx": 3}
{"id": "Mercury_402092", "prompt": "Which is not an inherited trait in humans?", "choices": ["blue eyes", "long fingers", "calloused hands", "attached earlobes"], "answer_idx": 2}
{"id": "VASoL_2007_5_31", "prompt": "The wind helps many plants reproduce by ___.", "choices": ["cooling the plants", "giving the plants moisture", "spreading the plants' pollen", "strengthening the plants' root systems"], "answer_idx": 2}
{"id": "Mercury_409111", "prompt": "The human hearing range is 20-20,000 hertz. A sound Peggy heard was measured at 15,000 hertz. Which characteristic best describes the sound wave that Peggy heard?", "choices": ["fast speed", "high frequency", "large amplitude", "long wavelength"], "answer_idx": 1}
{"id": "AKDE&ED_2012_8_1", "prompt": "A student is asked to measure the distance from the floor to the ceiling in a classroom. Which unit of measurement should the student most likely use to accurately measure this distance?", "choices": ["liter", "kiloliter", "meter", "kilometer"], "answer_idx": 2}
{"id": "MCAS_2006_9_5", "prompt": "Which of the following explains why elements, such as carbon and oxygen, that are used in organic molecules are not permanently removed from the environment?", "choices": ["They are replenished by sunlight.", "They are cycled through ecosystems.", "They are replaced by volcanic eruptions.", "They are produced constantly from nutrients."], "answer_idx": 1}
{"id": "MDSA_2007_5_57", "prompt": "A student is measuring the speed at which a ball rolls down a ramp. Which unit of measurement is the student most likely using to describe the speed of the ball?", "choices": ["meter per liter", "seconds per gram", "milligrams per liter", "centimeters per second"], "answer_idx": 3}
{"id": "Mercury_SC_408628", "prompt": "Marta and Roger are comparing how long it takes two different types of seeds to sprout. They plant both types of seeds in similar pots, place them in a sunny window, and water them daily. If they want to conduct their investigation correctly, which information is most important to record?", "choices": ["the depth of the soil", "the temperature of the water", "the number of days until the seeds sprout", "the size of pot used for growing the seeds"], "answer_idx": 2}
{"id": "Mercury_SC_401310", "prompt": "Deposition of sediment will most likely form a", "choices": ["cave.", "delta.", "river.", "mountain."], "answer_idx": 1}
{"id": "Mercury_SC_409172", "prompt": "During a space mission, scientists will send experiments for the astronauts to conduct in space. In many cases, scientists have made predictions about the outcome of the experiment. Why do astronauts perform the experiment if the results have already been predicted?", "choices": ["to obtain data to test a hypothesis", "to make a complete observation", "to make a report of the procedures", "to make a hypothesis understandable"], "answer_idx": 0}
{"id": "Mercury_7211628", "prompt": "Approximately 14,000 years ago, the climate in North America began to warm rapidly. At the same time, human hunters migrated to the continent. Which of these most likely resulted from a combination of these two factors?", "choices": ["a reduction in the rate of species change", "an increase in the rate of large mammal extinctions", "an increase in the amount of interspecies cooperation", "a reduction in the total number of small parasitic insects"], "answer_idx": 1}
{"id": "Mercury_412777", "prompt": "Which is an SI unit for density?", "choices": ["lb", "kg", "lb/ft^3", "kg/m^3"], "answer_idx": 3}
{"id": "MCAS_2000_4_35", "prompt": "In the United States, each day the Sun appears to", "choices": ["rise in the west and set in the east.", "rise in the east and set in the west.", "rise in the north and set in the south.", "rise in the south and set in the north."], "answer_idx": 1}
{"id": "Mercury_SC_401358", "prompt": "Which substance is magnetic and conducts heat?", "choices": ["wood", "plastic", "iron", "paper"], "answer_idx": 2}
{"id": "Mercury_7181633", "prompt": "During a biochemical reaction, pyruvate (C3H4O3) is converted into carbon dioxide (CO2) and water (H2O). In what cellular organelle does this biochemical reaction occur?", "choices": ["nucleus", "cytoplasm", "mitochondria", "endoplasmic reticulum"], "answer_idx": 2}
{"id": "NYSEDREGENTS_2010_8_6", "prompt": "A student fails to eat a balanced diet over a period of time. This lack of a balanced diet can lead to", "choices": ["selective breeding", "dynamic equilibrium", "extinction", "disease"], "answer_idx": 3}
{"id": "Mercury_411027", "prompt": "In 1989, an oil spill off the coast of Alaska led to a decline in the population of many organisms. Which other population was most likely affected by the drop in population of the fish, otters, and seals?", "choices": ["deer", "eagles", "frogs", "snakes"], "answer_idx": 1}
{"id": "Mercury_7267943", "prompt": "Which of these is the best reason for exercising on space flights?", "choices": ["to increase strength for moving around in the cabin", "to keep from becoming overweight on a space mission", "to minimize the loss of muscle mass due to microgravity", "to ensure that bodily fluids do not tend to collect in the feet"], "answer_idx": 2}
{"id": "Mercury_SC_406467", "prompt": "With the development of the microscope, scientists were able to see cells for the first time. Why was it difficult to view cells without a microscope?", "choices": ["Cells are small.", "Cells are alive.", "Cells move quickly.", "Cells have an electrical charge."], "answer_idx": 0}
{"id": "MCAS_2006_9_29", "prompt": "Fertilizers can enable farmers to grow the same crop in a field for several years in a row. Farmers who use less fertilizer often rotate their crops by planting the crop one year and legumes, such as beans and clover, the following year. Fertilizer use and crop rotation with legumes both increase the availability of which of the following nutrients in soil?", "choices": ["calcium", "nitrogen", "oxygen", "protein"], "answer_idx": 1}
{"id": "NYSEDREGENTS_2013_4_22", "prompt": "Which two processes occur during the life spans of all animals?", "choices": ["hibernation and migration", "growth and development", "changing color and shedding fur", "building nests and communication"], "answer_idx": 1}
{"id": "MEAP_2005_8_16", "prompt": "Which of the following is true regarding the properties of an air mass?", "choices": ["An air mass is warmer at the leading edge and cooler at the trailing edge.", "An air mass has similar temperature and moisture properties throughout it.", "An air mass is cooler near the edges and has greater moisture near the center.", "An air mass has greater moisture near the edges and is cooler near the center."], "answer_idx": 1}
{"id": "Mercury_SC_402074", "prompt": "When entire communities in an ecosystem change over time, it is known as", "choices": ["migration.", "extinction.", "overpopulation.", "ecological succession."], "answer_idx": 3}
{"id": "Mercury_7056543", "prompt": "What should be added to soil to increase its water retention?", "choices": ["pebbles", "sand", "rocks", "clay"], "answer_idx": 3}
{"id": "MCAS_2000_4_11", "prompt": "A rosebush and a bird are similar because they both", "choices": ["are living organisms.", "need to search for food.", "make their own food.", "are non-living organisms."], "answer_idx": 0}
{"id": "Mercury_7219118", "prompt": "The mineral quartz naturally forms in various colors. Which difference in quartz formation results in the different colors?", "choices": ["pressure at which the processes occurred", "temperature at which the processes occurred", "chemical impurities present as the processes occurred", "amount of time passed since the processes occurred"], "answer_idx": 2}
{"id": "Mercury_7043873", "prompt": "What happens to a moist air mass as it moves upward in the atmosphere?", "choices": ["It becomes warmer and forms clouds.", "It becomes cooler and forms clouds.", "Its temperature remains the same.", "Its temperature varies greatly."], "answer_idx": 1}
{"id": "Mercury_7207060", "prompt": "Greenhouse gases in the atmosphere absorb infrared radiation from Earth's surface and re-radiates some of it back to Earth. Which of these gases have the most significant impact on the temperature of Earth's atmosphere?", "choices": ["nitrogen and argon", "oxygen and sulfur dioxide", "carbon dioxide and water vapor", "hydrochloric acid and hydrogen"], "answer_idx": 2}
{"id": "Mercury_7090563", "prompt": "Volcanoes are considered constructive because they", "choices": ["deposit lava.", "cause erosion.", "trigger earthquakes.", "release gases."], "answer_idx": 0}
{"id": "Mercury_SC_402623", "prompt": "What happens to sugar when it is combined with water?", "choices": ["it separates", "it dissolves", "it floats to the top", "it becomes warm"], "answer_idx": 1}
{"id": "Mercury_SC_416138", "prompt": "Pesticides are chemicals that kill insects. What could happen if the pesticides killed all the pollinators near some apple trees?", "choices": ["The trees could not make leaves.", "The trees could not make flowers.", "The trees could not make seeds.", "The trees could not make bark."], "answer_idx": 2}
{"id": "Mercury_SC_405510", "prompt": "Which statement describes the formation of a delta?", "choices": ["A large mass of ice and snow accumulates.", "A mound of sand is built by wind.", "A low area of land is surrounded by mountains.", "A mass of sediment is deposited at the mouth of a river."], "answer_idx": 3}
{"id": "MDSA_2013_8_33", "prompt": "Hydrogen and oxygen combine to form water. The water in this reaction is described as", "choices": ["an atom", "a reactant", "an element", "a compound"], "answer_idx": 3}
{"id": "Mercury_7271373", "prompt": "Which of these cell parts store genetic instructions for the entire organism and transfers them from one generation to the next?", "choices": ["chloroplasts", "mitochondria", "DNA molecules", "nuclear membranes"], "answer_idx": 2}
{"id": "Mercury_400629", "prompt": "Which list describes the particles that make up an atom?", "choices": ["nucleus, electrons, and quarks", "protons, neutron, and electrons", "ionic bonds, covalent bonds, and ions", "nucleus, electron cloud, and energy levels"], "answer_idx": 1}
{"id": "MEA_2010_8_9", "prompt": "Earth has a limited supply of fresh drinking water. Which method is used to recycle water for humans to use?", "choices": ["bottling water", "dam construction", "collecting rainwater", "wastewater treatment"], "answer_idx": 3}
{"id": "Mercury_7217595", "prompt": "A plover bird eats bits of food that become stuck in a crocodile's teeth without being hurt. The crocodile gets its teeth cleaned and the bird gets food. Which type of relationship exists between the bird and the crocodile?", "choices": ["mutualism", "commensalism", "parasitism", "phototropism"], "answer_idx": 0}
{"id": "MEA_2010_8_6-v1", "prompt": "What can scientists learn about the past by studying sedimentary rocks?", "choices": ["how a species changed over time", "how animals made a shelter", "the color of leaves on a plant", "the number of chambers in a dinosaur's heart"], "answer_idx": 0}
{"id": "AKDE&ED_2008_8_39", "prompt": "A scientific explanation should include a demonstration of the relationships between", "choices": ["measurement, form, and function.", "changes, interactions, and formulas.", "logic, evidence, and current knowledge.", "hypothesis, problem solving, and lab equipment."], "answer_idx": 2}
{"id": "Mercury_406546", "prompt": "A plant that has traits identical to the parent plant provides evidence that the plant", "choices": ["resulted from sexual reproduction.", "resulted from asexual reproduction.", "will develop many seeds.", "will have large leaves."], "answer_idx": 1}
{"id": "AKDE&ED_2012_8_15", "prompt": "Which property would best help a student determine if two substances are made of two different elements?", "choices": ["mass", "shape", "density", "volume"], "answer_idx": 2}
{"id": "Mercury_SC_400610", "prompt": "Evidence of organisms that lived on Earth a long time ago would most likely be found in", "choices": ["crystals.", "lava.", "sedimentary rock.", "metamorphic rock."], "answer_idx": 2}
{"id": "Mercury_SC_400532", "prompt": "Which type of energy does a radiator give off ?", "choices": ["heat", "light", "solar", "electrical"], "answer_idx": 0}
{"id": "MCAS_2005_8_1", "prompt": "While hiking through Granville State Forest, a student finds an unusual plant-like organism that appears to lack chlorophyll. When the student examines a sample using a microscope, he sees many cells with cell walls and no chloroplasts. This organism is most likely a member of what Kingdom?", "choices": ["Animalia", "Eubacteria", "Fungi", "Protista"], "answer_idx": 2}
{"id": "Mercury_400620", "prompt": "A student conducts an experiment to determine the effect soap has on the growth of radish seeds. He puts 30 seeds in three different dishes: one with water, one with a 1% soap solution, and one with a 10% soap solution. Which type of data should he collect?", "choices": ["size of seeds and amount of solution used", "time of day and number of seeds germinated", "type of detergent and amount of solution used", "number of seeds germinated and average length of shoot"], "answer_idx": 1}
{"id": "MCAS_8_2015_12", "prompt": "Which of the following statements best describes how the use of interchangeable parts has affected car manufacturing?", "choices": ["The number of cars produced has decreased.", "The need for custom manufacturing has increased.", "The efficiency of manufacturing plants has increased.", "The number of countries producing cars has decreased."], "answer_idx": 2}
{"id": "Mercury_7234623", "prompt": "Which quantity must equal zero if a car is moving at a constant rate along a straight line?", "choices": ["speed of the car", "direction of the car", "energy of the car", "acceleration of the car"], "answer_idx": 3}
{"id": "Mercury_7211260", "prompt": "Which widely used energy sources are nonrenewable and also a source of greenhouse gas emissions?", "choices": ["wind turbines", "hydroelectric dams", "fossil fuels", "solar cells"], "answer_idx": 2}
{"id": "MCAS_2001_8_19", "prompt": "Use the information below to answer the question. In solid fuel rockets, a fuel mixture is burned and once the mixture starts burning it cannot be stopped. In liquid fuel rockets, there is a tank of fuel and a tank of oxygen. The burning of the fuel can be stopped by preventing the flow of fuel and oxygen into the combustion chamber. Based on this information, which system is more highly developed in liquid fuel rockets than in solid fuel rockets?", "choices": ["propulsion", "suspension", "control", "structure"], "answer_idx": 2}
{"id": "Mercury_SC_402117", "prompt": "Some research has shown that the burning of fossil fuels contributes to an effect called global warming, which scientists believe is changing the chemical makeup of Earth's atmosphere. Use of which invention would help lower this effect?", "choices": ["electric car", "digital camera", "high-speed Internet", "battery-powered radio"], "answer_idx": 0}
{"id": "TIMSS_2007_8_pg29", "prompt": "Which food contains the highest percentage of protein?", "choices": ["rice", "dates", "carrots", "chicken"], "answer_idx": 3}
{"id": "Mercury_SC_401126", "prompt": "When conducting an investigation involving an open flame, it is most important to", "choices": ["turn out the lights to see better.", "smell the product that is being burned.", "work near the sink to put out possible fires.", "wear appropriate protective clothing and eyewear."], "answer_idx": 3}
{"id": "Mercury_7267488", "prompt": "In ecosystems where people live, which of the following are most likely to cause an increase in diseases transmitted by water?", "choices": ["floods", "blizzards", "hailstorms", "avalanches"], "answer_idx": 0}
{"id": "OHAT_2010_8_29", "prompt": "Aphids are small insects that sometimes live near ants. The ants protect the aphids from predators. The aphids produce a sweet substance that the ants eat. Which statement describes the relationship between ants and aphids?", "choices": ["Both ants and aphids benefit.", "Both ants and aphids are unaffected.", "The ants benefit and the aphids are harmed.", "The aphids benefit and the ants are unaffected."], "answer_idx": 0}
{"id": "Mercury_7132370", "prompt": "Soil will pack down over time which decreases the ability of the soil to hold water. Which animals would best help the soil hold water?", "choices": ["earthworms making tunnels under the surface", "cattle making depressions with their hooves", "horses making trenches when they gallop", "sheep pulling up plants by their roots"], "answer_idx": 0}
{"id": "Mercury_7162803", "prompt": "At an archaeological dig site, scientists, volunteers, and students collect items used by people living hundreds of years ago. To determine the history of the different people who may have lived at the site, which is the best method to classify the recovered items?", "choices": ["by the type of item", "by the size of the item", "by the person who located the item", "by the soil layer where the item was found"], "answer_idx": 3}
{"id": "Mercury_7026530", "prompt": "It is hypothesized that in the next 200 years, the lowest land areas on Earth could be submerged beneath rising oceans. Which climate change would most likely cause this to occur?", "choices": ["global warming", "decreased winds", "the start of an ice age", "increased desertification"], "answer_idx": 0}
{"id": "MCAS_2012_8_23653", "prompt": "Miriam notices when she goes to the beach that sometimes the water rises as high as the pier. At other times of the day, the water barely covers the pillars under the pier. These differences in water level are primarily due to the gravitational influence of which of the following?", "choices": ["the Sun", "the Moon", "asteroids", "comets"], "answer_idx": 1}
{"id": "CSZ_2009_8_CSZ30585", "prompt": "Copper (Cu) reacts with oxygen (O) to form copper oxide (CuO). The properties of CuO are most likely", "choices": ["different from copper or oxygen.", "similar to both copper and oxygen.", "similar only to copper.", "similar only to oxygen."], "answer_idx": 0}
{"id": "MCAS_8_2014_13", "prompt": "Carbon dioxide produced by cells is removed from the body primarily by which body system?", "choices": ["digestive", "excretory", "immune", "respiratory"], "answer_idx": 3}
{"id": "Mercury_416377", "prompt": "The ocean minimum zone, or OMZ, is an area from 200 to 600 meters below the ocean's surface. The OMZ is dark and cold, with oxygen concentrations less than 10% of concentrations in surface water. Oxygen concentrations are so low because of bacterial activity that breaks down organic material falling from surface waters. Given the conditions in the OMZ, which of these dissolved gases would you expect to find in large concentrations in this zone?", "choices": ["argon", "nitrogen", "carbon dioxide", "carbon monoxide"], "answer_idx": 2}
{"id": "Mercury_407668", "prompt": "Two students went fishing one morning and caught 20 fish. The afternoon before, they caught 5 fish. Because of their morning success, they claimed that morning was the best time to fish. Which of these would most likely disprove their claim?", "choices": ["catching more than 20 fish in the same location", "catching more than 20 fish in another location", "catching more than 20 fish the next afternoon", "catching more than 20 fish the next morning"], "answer_idx": 2}
{"id": "Mercury_SC_406664", "prompt": "Which question can be answered by scientific experimentation and observation?", "choices": ["Are dogs better pets than cats?", "How many stars are in the universe?", "In what type of light will a plant grow best?", "How many organisms have lived on Earth?"], "answer_idx": 2}
{"id": "Mercury_7188510", "prompt": "During cellular respiration glucose molecules undergo a series of reactions. This process results in the formation of up to 38 molecules of high-energy ATP per each molecule of glucose. Which is the source of the energy stored in these ATP molecules?", "choices": ["kinetic energy generated by the chemical reactions", "chemical energy originally stored in the glucose molecule", "electric current created during the destruction of electrons in the glucose", "potential energy from the difference in the concentration gradients of the cell"], "answer_idx": 1}
{"id": "Mercury_7146178", "prompt": "Lea is investigating how phosphates affect oxygen levels in pond water. For part of the investigation, she uses pond water that contains no phosphates. The pond water without phosphates would be what part of the investigation?", "choices": ["conclusion", "hypothesis", "control group", "experimental group"], "answer_idx": 2}
{"id": "NYSEDREGENTS_2015_4_16", "prompt": "Which tool should a student use to examine spots on a frog?", "choices": ["thermometer", "hand lens", "graduated cylinder", "magnet"], "answer_idx": 1}
{"id": "Mercury_SC_408740", "prompt": "A group of scientists is studying the effect of cell phone signals on honeybees. Before starting the investigation, the scientists stated that the bees exposed to cell phone signals will have difficulty finding their way back to the hive. Which term best describes the statement made by the group of scientists?", "choices": ["control", "data", "hypothesis", "variable"], "answer_idx": 2}
{"id": "Mercury_SC_401811", "prompt": "Which system is most responsible for transporting blood throughout the body?", "choices": ["skeletal system", "excretory system", "digestive system", "circulatory system"], "answer_idx": 3}
{"id": "MCAS_1999_8_23", "prompt": "Five hundred flies of one species were sprayed with a new insecticide. Twenty-four hours later, nearly all the flies were dead. However, a few survived. Which principle best explains why some flies survived?", "choices": ["Animals adapt to new environments.", "New species develop from survivors.", "There is variation among individuals within a species.", "Insecticides may cause genetic mutations."], "answer_idx": 2}
{"id": "Mercury_7124268", "prompt": "A student investigated the effect of the color of light on the growth of plants. Red, yellow, and green lights were used in the experiment. If another student were to conduct the same experiment, which would be the most important procedure to follow to yield the same results?", "choices": ["to do the investigation at the same time of year", "to use the same chart for recording growth", "to do the investigation in the same room", "to use the same colors of lights"], "answer_idx": 3}
{"id": "Mercury_SC_400663", "prompt": "A large mammal lives in a cold, snowy environment. Which adaptation would best help the mammal survive in low temperatures?", "choices": ["thick fur", "sharp claws", "large ears", "strong muscles"], "answer_idx": 0}
{"id": "Mercury_7207078", "prompt": "The temperatures in space vary from extremely cold to extremely hot. Earth's surface temperature is relatively stable. Which of these is most responsible for Earth's surface temperatures?", "choices": ["solar radiation reflected from the Moon", "many volcanic eruptions near the Ring of Fire", "the greenhouse effect in the atmosphere", "plankton distribution in shallow ocean waters"], "answer_idx": 2}
{"id": "MCAS_2003_8_10", "prompt": "Which of the following correctly lists the organizational hierarchy of organisms from simplest to most complex?", "choices": ["cells, organs, tissues, organ systems, organisms", "cells, tissues, organs, organ systems, organisms", "tissues, cells, organs, organ systems, organisms", "tissues, organs, cells, organ systems, organisms"], "answer_idx": 1}
{"id": "Mercury_SC_416136", "prompt": "The carrion flower smells like rotting meat. What kind of pollinator is most likely attracted to the carrion flower?", "choices": ["moth", "butterfly", "wasp", "fly"], "answer_idx": 3}
{"id": "NAEP_2000_8_S11+5", "prompt": "Which of the following best explains why the pressure inside a high-flying airplane must be controlled?", "choices": ["At high altitudes there is greater atmospheric pressure than on the surface of the Earth.", "At high altitudes there is lower atmospheric pressure than on the surface of the Earth.", "If the cabin is not pressurized, ozone and other upper atmospheric gases will enter the airplane.", "If the cabin is not pressurized, carbon dioxide will escape from the airplane."], "answer_idx": 1}
{"id": "Mercury_SC_400376", "prompt": "Hurricanes are large, powerful storms that form as they travel over warm ocean waters. What do oceans add to make hurricanes so strong?", "choices": ["salt and water", "wind and tides", "heat and moisture", "waves and flooding"], "answer_idx": 2}
{"id": "NYSEDREGENTS_2013_8_19", "prompt": "Abnormal cell division may result in", "choices": ["disease prevention", "tissue repair", "metamorphosis", "cancer"], "answer_idx": 3}
{"id": "LEAP__7_10345", "prompt": "What is the main reason humans need nitrogen to survive?", "choices": ["Nitrogen is used in respiration to generate energy.", "Nitrogen is used in making the proteins in the body.", "Nitrogen is used to help the body eliminate wastes.", "Nitrogen is used by nerve cells to conduct impulses."], "answer_idx": 1}
{"id": "Mercury_7161473", "prompt": "The phases of the Moon are daily changes in the appearance of the Moon. One reason Moon phases occur is because the Moon reflects sunlight. Which is another reason that the phases of the Moon occur?", "choices": ["Earth is tilted on the axis.", "The Moon rises and sets.", "The Moon orbits Earth.", "Earth orbits the Sun."], "answer_idx": 2}
{"id": "MCAS_2006_9_42", "prompt": "Some campers are sitting around a campfire outside their tent. Which product of the fire is in the form of electromagnetic waves?", "choices": ["light", "smoke", "sound", "water vapor"], "answer_idx": 0}
{"id": "Mercury_410467", "prompt": "Jon had a flat tire on his car. He used a hydraulic jack to lift the car up so that he could change the tire. If Jon knows the amount of force used to lift the car 0.25 meter off of the ground, what is he able to calculate?", "choices": ["momentum", "power", "pressure", "work"], "answer_idx": 3}
{"id": "Mercury_SC_416161", "prompt": "Which organ is made mostly of muscle?", "choices": ["heart", "lung", "ear", "brain"], "answer_idx": 0}
{"id": "Mercury_404614", "prompt": "Which is considered a property of soil?", "choices": ["streak", "fracture", "texture", "luster"], "answer_idx": 2}
{"id": "Mercury_7220833", "prompt": "Which of these had the greatest impact on the current shape of Nevada's basin and range landscape?", "choices": ["tidal forces", "wind erosion", "plate tectonics", "global warming"], "answer_idx": 2}
{"id": "MCAS_2005_9_19-v1", "prompt": "Which of the following is the primary way that evergreen trees planted on the north and west sides of residences in Massachusetts help reduce winter heating costs?", "choices": ["They insulate against cold air.", "They optimize solar heating.", "They reduce radiant cooling.", "They act as a windbreak."], "answer_idx": 3}
{"id": "Mercury_SC_407376", "prompt": "Air is composed of nitrogen, oxygen, and other gases. Based on that information, air can be described as", "choices": ["a compound.", "an element.", "a mixture.", "a molecule."], "answer_idx": 2}
{"id": "ACTAAP_2008_5_5", "prompt": "Which action should be taken in order to identify the streak of a mineral during an investigation?", "choices": ["Weigh the mineral", "Dip the mineral in acid", "Heat the mineral until it melts", "Drag an edge of the mineral across a tile"], "answer_idx": 3}
{"id": "Mercury_7220010", "prompt": "In Type 1 diabetes, the immune system attacks the pancreatic cells that produce insulin. Without insulin, people that have Type 1 diabetes are unable to regulate blood glucose levels. What two symptoms are most likely associated with Type 1 diabetes?", "choices": ["extreme thirst and weight loss", "intense aches and spasms", "severe loss of hearing and vision", "excessive loss of coordination and memory"], "answer_idx": 0}
{"id": "Mercury_7041878", "prompt": "When the cardboard cone of a radio speaker vibrates, it produces a sound in the air around it. The cone produces this sound by transferring which of the following to the air around it?", "choices": ["heat", "current", "wave motion", "magnetic force"], "answer_idx": 2}
{"id": "Mercury_LBS10126", "prompt": "During a demonstration, a teacher pours CO_{2} gas over a candle, putting out the flame. Which physical property allows the teacher to pour the CO_{2} gas?", "choices": ["The gas is more dense than the air.", "The gas is more visible than the air.", "The gas smells different from the air.", "The gas evaporates faster than the air."], "answer_idx": 0}
{"id": "Mercury_7030783", "prompt": "Atoms of the same element can have different atomic masses because they can have different numbers of", "choices": ["neutrons.", "protons.", "electrons.", "neutrinos."], "answer_idx": 0}
{"id": "Mercury_SC_402642", "prompt": "Which would be the best conductor of electricity?", "choices": ["air", "cork", "water", "silver"], "answer_idx": 3}
{"id": "Mercury_SC_401269", "prompt": "Part of a scientific method involves collecting data in order to", "choices": ["change a theory.", "test a hypothesis.", "write a procedure.", "make an observation."], "answer_idx": 1}
{"id": "Mercury_7162785", "prompt": "Gravity is a measurable force of attraction which acts upon objects. Which characteristic determines the gravity of an object?", "choices": ["friction", "mass", "tension", "weight"], "answer_idx": 1}
{"id": "TIMSS_2007_8_pg102", "prompt": "Which is NOT an example of a chemical change?", "choices": ["Melting ice", "corroding silver", "Burning match", "Rotting vegetation"], "answer_idx": 0}
{"id": "AKDE&ED_2008_8_30", "prompt": "Seasons in Alaska are primarily caused by which factor as Earth revolves around the Sun?", "choices": ["the tilt of Earth on its axis", "the rate of rotation of Earth", "the effects of solar flare activity", "the relative distance between Earth and the Sun"], "answer_idx": 0}
{"id": "Mercury_7032393", "prompt": "A student needs to measure out a precise amount of liquid. What is the best tool for the student to use?", "choices": ["test tube", "meter stick", "balance scale", "graduated cylinder"], "answer_idx": 3}
{"id": "NYSEDREGENTS_2015_4_23", "prompt": "An octopus squirts black ink around itself to hide from predators. This adaptation is an example of", "choices": ["creating shelter", "recycling nutrients", "a transfer of energy", "a defense mechanism"], "answer_idx": 3}