-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdata.json
More file actions
8080 lines (8080 loc) · 401 KB
/
data.json
File metadata and controls
8080 lines (8080 loc) · 401 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 1,
"difficulty": "easy",
"question": "The fundamental difference between chemical changes and physical changes is ( ) (A) There are phenomena of fever and luminescence. (B) New substances are being generated. (C) Gas is released (D) Changes in the state of matter"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 2,
"difficulty": "easy",
"question": "Due to excessive deforestation and large-scale reclamation of grasslands, land desertification has occurred, resulting in the most severe sandstorm weather in our city this year. The sandstorm weather has increased a large amount of ( ) in the air. (A) Inhalable Particulate Matter (B) Carbon Monoxide (C) Nitrogen Dioxide (D) Sulfur Dioxide"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 3,
"difficulty": "easy",
"question": "Air is a valuable natural resource, the gas that is converted into nitrogen fertilizer through chemical changes is ( ) (A) Oxygen (B) Nitrogen (C) Carbon Dioxide (D) Rare Gases"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 4,
"difficulty": "medium",
"question": "The following statements about oxygen are correct ( ) (A) Oxygen can be used as fuel. (B) The mass fraction of oxygen in the air is 21%. (C) Oxygen can react with all substances. (D) Food spoilage is caused by oxygen."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 5,
"difficulty": "medium",
"question": "The correct statement about the following experimental phenomena is ( ) (A) Red phosphorus produces a large amount of white smoke when burned in the air. (B) Charcoal burns in oxygen to produce carbon dioxide. (C) Oxygen supports combustion and can be used as fuel. (D) The iron wire sparks wildly when burned in oxygen."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 6,
"difficulty": "medium",
"question": "What determines the type of element is (A) Neutron Number (B) Proton Number (C) Number of Electrons Outside the Nucleus (D) Number of Outermost Electrons"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 7,
"difficulty": "medium",
"question": "In daily life, the thing that most easily foams when interacting with soapy water is ( ) (A) Mineral Water (B) Boiled water (C) River water (D) Water containing a higher amount of soluble calcium and magnesium compounds."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 8,
"difficulty": "medium",
"question": "When a certain compound is completely burned in oxygen, it only produces carbon dioxide and water, then this substance ( ) (A) Contains only carbon and hydrogen elements. (B) Definitely contains carbon and hydrogen elements, may contain oxygen elements. (C) Must contain carbon, hydrogen, oxygen elements. (D) Definitely contains carbon and oxygen elements, possibly contains hydrogen elements."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 9,
"difficulty": "medium",
"question": "The incorrect statement about the chemical properties of carbon is ( ) (A) The higher the temperature, the stronger the activity of carbon. (B) Carbon has reducing properties, and at high temperatures, carbon can reduce iron oxide to iron. (C) The complete combustion of carbon in oxygen is an exothermic reaction, while incomplete combustion is an endothermic reaction. (D) Carbon can be preserved for a long time at room temperature without deterioration."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 10,
"difficulty": "medium",
"question": "NO is a colorless gas, and its preparation in the laboratory must be collected by the drainage method. The conclusion that can be drawn from this is ( ) (A) NO is insoluble in water. (B) NO will react with oxygen. (C) NO is poisonous (D) NO density is close to that of air."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 11,
"difficulty": "medium",
"question": "The common method for producing carbon dioxide in the laboratory is ( ) (A) Charcoal burns in oxygen. (B) Sodium carbonate reacts with dilute hydrochloric acid. (C) Reaction between Marble and Dilute Sulfuric Acid (D) Reaction between Limestone and Dilute Hydrochloric Acid"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 12,
"difficulty": "medium",
"question": "When collecting carbon dioxide by the upward displacement of air method, the correct method to check if the carbon dioxide is fully collected from the following is ( ) (A) Place the wooden stick with Mars on the mouth of the gas collection bottle. (B) Place the burning stick at the mouth of the gas collection bottle. (C) Pour a small amount of clarified lime water and oscillate. (D) Insert the burning stick into the gas collection bottle."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 13,
"difficulty": "medium",
"question": "The correct statement about carbon monoxide and carbon dioxide is ( ) (A) Both carbon monoxide and carbon dioxide can be used to extinguish fires. (B) Carbon monoxide and carbon dioxide cannot be converted into each other. (C) A carbon dioxide molecule has one more oxygen atom than a carbon monoxide molecule. (D) Carbon monoxide and carbon dioxide are gases composed of the same elements."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 14,
"difficulty": "medium",
"question": "The properties of a substance determine its use. The following causal relationship does not hold true. (A) Because phosphorus can produce white smoke when burned, it can be used to make smoke grenades. (B) Because the melting point of the metal tungsten is high, it is used to make the filament in light bulbs. (C) Because nitrogen has inactive chemical properties, it can be used for preservation in food packaging bags. (D) Because oxygen can support combustion, it can be used as fuel."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 15,
"difficulty": "medium",
"question": "The following statement is incorrect (A) In ions, the number of protons does not equal the number of electrons. (B) In the atomic nucleus, the number of neutrons can be zero. (C) Molecules of the same type always have the same physical properties. (D) In chemical changes, molecules can be further divided while atoms cannot be further divided."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 16,
"difficulty": "medium",
"question": "The United Nations designated the year 2019 as the \"International Year of the Periodic Table of Chemical Elements\". The correct statement about the periodic table is ( ) (A) Currently, the periodic table has 7 periods. (B) The basis for the arrangement of elements in the periodic table is the relative atomic mass of the atoms. (C) The periodic table of elements has sixteen vertical rows, also known as sixteen groups. (D) The periodic table of elements has developed into a stable form, and it is unlikely to undergo any new changes."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 17,
"difficulty": "medium",
"question": "After the experiment of determining the oxygen content in the air with red phosphorus, the main gas remaining in the reaction container is (\n) (A) Nitrogen (B) Phosphorus Pentoxide (C) Rare Gases (D) Carbon Dioxide"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 18,
"difficulty": "medium",
"question": "The correct statement about oxygen is ( ) (A) Oxygen has combustibility and can support combustion. (B) Aquatic animals can survive in water because oxygen is easily soluble in water. (C) Oxygen is produced industrially by the method of separating liquid air. (D) The chemical properties of oxygen are very active, and it can react with all substances at room temperature."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 19,
"difficulty": "easy",
"question": "The most abundant element in the Earth's crust is ( ) (A) Oxygen (B) Aluminum (C) Silicon (D) Iron"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 20,
"difficulty": "medium",
"question": "The following statement that is incorrect is ( ) (A) You can smell the fragrance of flowers from a distance, which indicates that molecules are constantly in motion. (B) There are approximately 1.67×10^21 water molecules in a single drop of water, which shows that molecules are very small. (C) When measuring body temperature with a mercury thermometer, the rise of the mercury column indicates an increase in the gap between molecules. (D) Substances composed of molecules, where the molecule is the smallest particle that retains its chemical properties."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 21,
"difficulty": "easy",
"question": "The following changes belong to chemical changes are ( ) (A) Paper Burning (B) Water freezes into ice. (C) Gasoline Evaporation (D) The glass shatters"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 22,
"difficulty": "medium",
"question": "**The substance that produces an irritating odor when burned in oxygen is ( ) (A) Magnesium Bar (B) Iron Wire (C) White Phosphorus (D) Sulfur"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 23,
"difficulty": "medium",
"question": "**Air is a precious resource, the correct description about the components of air is ( ) (A) Oxygen: Can be used as a protective gas. (B) Nitrogen: The gas with the largest volume fraction in the air. (C) Carbon Dioxide: A type of pollutant in the air. (D) Rare Gases: Chemically Unstable"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 24,
"difficulty": "medium",
"question": "The World Health Organization (WHO) issued a statement saying that Dexamethasone (C~22~H~29~F0~5~) can save the lives of severe COVID-19 patients. The correct statement is ( ) (A) Dexamethasone belongs to oxides. (B) Dexamethasone is composed of four elements. (C) The mass fraction of hydrogen in Dexamethasone is the largest. (D) The mass ratio of carbon to oxygen in Dexamethasone is 22:5."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 25,
"difficulty": "medium",
"question": "**The following statement about extinguishing fires is not correct ( ) (A) Isolating oxygen can achieve the purpose of extinguishing fire. (B) Removing combustible materials can achieve the purpose of extinguishing fire. (C) Lowering the ignition point of combustible materials can achieve the purpose of extinguishing fire. (D) A fire in the library can be extinguished with a carbon dioxide fire extinguisher."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 26,
"difficulty": "medium",
"question": "The following changes belong to physical changes are ( ) (A) Food Rotting (B) Gunpowder Explosion\\ (C) Gasoline Evaporation (D) Paper Burning"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 27,
"difficulty": "medium",
"question": "The correct reasoning among the following is ( ) (A) Ions are charged particles, so any particle carrying a charge must be an ion. (B) Oxides are compounds containing oxygen elements, so compounds containing oxygen elements must be oxides. (C) H~2~ and He both have a proton number of 2, so particles with the same proton number are not necessarily the same element. (D) A simple substance is a substance composed of one kind of element, so a substance composed of one kind of element must be a simple substance."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 28,
"difficulty": "easy",
"question": "The following changes belong to chemical changes are ( ) (A) Dry the wet clothes (B) The glass shatters (C) Melting Snow (D) Paper Burning"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 29,
"difficulty": "medium",
"question": "Chemical energy can guide us to better understand, transform, and apply materials. The following substances belong to pure substances are ( ) (A) Juice (B) Medical Alcohol (C) Cement Mortar (D) Ice-water mixture"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 30,
"difficulty": "easy",
"question": "The following substances are directly composed of atoms ( ) (A) Water (B) Copper (C) Hydrogen (D) Sodium Chloride"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 31,
"difficulty": "medium",
"question": "The molecular formula of sucrose is C~12~H~22~O~11~. The correct statement about sucrose is ( ) (A) The ratio of the number of H and O atoms is 2:1. (B) The relative molecular mass is (12+1+16) (C) There are 45 elements contained in cane sugar. (D) The mass fraction of the oxygen element is the smallest."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 32,
"difficulty": "easy",
"question": "**To measure 10mL of liquid, which range of measuring cylinder is the best to use? ( ) (A) 5mL (B) 10mL (C) 25mL (D) 50mL"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 33,
"difficulty": "easy",
"question": "The following gas can be supplied for animal and plant respiration is ( ) (A) CO2 (B) H~2~ (C) The provided content \"O~2~\" doesn't appear to be Chinese. It seems like a chemical symbol for Oxygen molecule (O2). Please provide valid Chinese content for translation. (D) The provided text \"N~2~\" does not appear to be Chinese. It seems to be a mathematical notation or a programming term. Please provide a valid Chinese text to translate."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 34,
"difficulty": "easy",
"question": "In the components of air, the one often filled into food packaging bags for preservation is ( ) (A) Oxygen (B) Nitrogen (C) Steam (D) Rare Gases"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 35,
"difficulty": "easy",
"question": "The following substance is not a component of air ( ) (A) N~2~ as a protective gas (B) Balloons are filled with He (Helium gas) (C) Emergency Medical Use O~2~ (D) New Rocket Propellant H~2~ (Liquid Hydrogen)"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 36,
"difficulty": "easy",
"question": "The name of the element \"A1\" is ( ) (A) Chlorine (B) Aluminum (C) Silicon (D) Helium"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 37,
"difficulty": "medium",
"question": "The reason why atoms do not exhibit electrical properties is ( ) (A) The atom does not contain charged particles. (B) Atoms are too small. (C) The atomic nucleus and the electrons outside the nucleus carry equal amounts of different types of charges. (D) The cause remains unknown to this day."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 38,
"difficulty": "medium",
"question": "**Among the following statements about the composition of substances, the incorrect one is ( ) (A) Copper is a metallic element composed of copper atoms. (B) Oxygen is a gaseous element composed of oxygen molecules. (C) Water is a compound composed of water molecules. (D) Sodium chloride is a compound composed of sodium chloride molecules."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 39,
"difficulty": "easy",
"question": "The particle that determines the chemical properties of an element is the atom's ( ) (A) Number of Neutrons in the Nucleus (B) Number of protons in the nucleus (C) Number of Outermost Electrons (D) Number of Electrons Outside the Nucleus"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 40,
"difficulty": "medium",
"question": "**Molecules, atoms, and ions are the basic particles that make up matter. The correct statement among the following is ( ) (A) Molecules are composed of atoms, and molecules are larger than atoms. (B) Water condenses into ice when it meets cold, the water molecules stop moving. (C) The atom is the smallest particle, which cannot be further divided. (D) Sodium chloride is composed of sodium ions and chloride ions."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 41,
"difficulty": "medium",
"question": "The following substances belong to oxides are ( ) (A) HNO3 (B) KMnO4 (C) P2O5 (D) Cu(OH)2"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 42,
"difficulty": "medium",
"question": "**To raise public awareness about water conservation and strengthen the protection of water resources, March 22nd is designated as \"World Water Day\" internationally. The correct statement about water is ( ) (A) Water is a commonly used solvent. (B) Industrial wastewater is arbitrarily discharged without treatment. (C) The electrolysis of water experiment concludes that water is composed of hydrogen and oxygen. (D) The fresh water resources available on Earth are inexhaustible and renewable."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 43,
"difficulty": "medium",
"question": "The following description about electrolysis of water experiment is correct ( ) (A) The gas produced by the positive electrode is hydrogen. (B) This experiment can prove that water contains hydrogen and oxygen elements. (C) The volume ratio of generated oxygen to hydrogen is approximately 2:1. (D) The water molecules do not change during the electrolysis process."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 44,
"difficulty": "medium",
"question": "The textbook uses water with a small amount of Na~2~SO~4~ for the electrolysis of water experiment. The information that cannot be obtained from this experiment is (\n) (A) The conductivity of pure water is weak. (B) The rate of gas production at the negative pole is faster than at the positive pole. (C) Changxia, the pH of the water is 7. (D) Water is composed of hydrogen elements and oxygen elements."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 45,
"difficulty": "medium",
"question": "The particulate matter produced during combustion is very small and does not easily settle. When it comes into contact with sulfur dioxide and oxygen in the air, some of the sulfur dioxide is converted into sulfur trioxide, increasing the acidity of the air. The role of floating dust may be (\n) (A) Oxidizing Agent (B) Reducing Agent (C) Catalyst (D) Adsorbent"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 46,
"difficulty": "medium",
"question": "The following transformation process does not include slow oxidation is ( ) (A) Respiration of Animals and Plants (B) Dissolution of Sucrose (C) Decomposition of Food (D) Brewing of Wine and Vinegar"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 47,
"difficulty": "medium",
"question": "In the experiment investigating the inhalation and exhalation of gases in the human body, the following statement is incorrect ( ) (A) The evidence that the exhaled gas contains more carbon dioxide is: the exhaled gas makes clear lime water turn murky to a large extent. (B) The evidence that the exhaled gas contains less oxygen is: the exhaled gas can make a burning stick burn more vigorously. (C) The evidence that the exhaled gas contains a lot of water vapor is: water mist appears on the glass slide from the exhaled gas. (D) The basis for determining that the exhaled gas contains nitrogen is: the air contains nitrogen and it is not absorbed by the human body."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 48,
"difficulty": "medium",
"question": "The properties and uses of the following substances are correlated ( ) (A) Activated carbon has adsorption properties and can be used for water purification. (B) Graphite has electrical conductivity and can be used for the production of pencil leads. (C) Carbon monoxide is flammable and can be used for iron smelting. (D) Calcium carbonate is insoluble in water and can be used as a calcium supplement."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 49,
"difficulty": "easy",
"question": "The gas in the composition of air that can provide for human respiration is ( ) (A) Nitrogen (B) Oxygen (C) Rare Gases (D) Carbon Dioxide"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 50,
"difficulty": "medium",
"question": "Air is an important resource. The correct statement about air is ( ) (A) Filling food packaging bags with oxygen can extend the shelf life of food. (B) The higher the air pollution index, the better the air quality. (C) The oxygen cycle plays a significant role in maintaining the balance of matter, energy, and ecology in nature. (D) Chemical changes occur during the process of separating liquid air to obtain oxygen and nitrogen."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 51,
"difficulty": "easy",
"question": "Middle school students should have a certain level of safety knowledge. The incorrect method of handling the following accidental incidents is (\n) (A) When the oil pan catches fire while cooking, extinguish it with the pot lid. (B) If you discover a fire that is relatively large or has a tendency to spread, immediately dial the fire emergency number 119. (C) In case of a fire indoors, quickly open doors and windows for ventilation. (D) In the event of a fire, use methods such as covering your mouth and nose with a wet towel to escape from the burning area."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 52,
"difficulty": "easy",
"question": "The items that can be carried on public transportation are ( ) (A) Tissue paper (B) Firecracker (C) Gasoline (D) Alcohol"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 53,
"difficulty": "medium",
"question": "If a fire hazard is discovered or a fire is encountered, stay calm and respond appropriately. The correct actions to take are (\n) (A) Do not use water to extinguish a fire in an oil pan. (B) In case of indoor fire, quickly open doors and windows for ventilation. (C) In case of a gas leak at home, immediately turn on the exhaust fan for ventilation. (D) In case of a fire, cover your mouth and nose with a wet towel and stay away from the burning area."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 54,
"difficulty": "medium",
"question": "The 2000L of oxygen can be compressed into a 20L steel cylinder, explain the correctness from the molecular perspective (\n) (A) The volume of the molecule has decreased. (B) The spacing between molecules has decreased. (C) The molecular mass has decreased. (D) The number of molecules has decreased."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 55,
"difficulty": "easy",
"question": "The following chemical term that matches its meaning is ( ) (A) O~2~------Two Oxygen Atoms (B) 3Fe------Three iron elements (C) 2Na^+^------Two sodium ions (D) C------A carbon molecule"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 56,
"difficulty": "medium",
"question": "The substance that can burn violently in oxygen, emit sparks, and produce black solids is (\n) (A) Charcoal (B) Sulfur Powder (C) Red Phosphorus (D) Iron Wire"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 57,
"difficulty": "medium",
"question": "The correct description of the combustion phenomenon of the following substances in air or oxygen is (A) When a magnesium strip burns in the air, it emits thick black smoke, releases heat, and produces black powder. (B) Iron wire burns violently in oxygen, sparks flying, releasing heat, and generating iron trioxide. (C) Charcoal burns in oxygen, emitting white light and releasing heat, producing a gas that can make clear lime water become turbid. (D) Sulfur burns in oxygen, emitting a faint blue flame, releasing heat, and producing an odorless gas."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 58,
"difficulty": "medium",
"question": "There is a mixture of carbon monoxide and carbon dioxide weighing 20g, in which the mass fraction of oxygen is 64%. First, let the mixed gas pass through red-hot copper oxide and then through a sufficient amount of clear lime water, the mass of the precipitate generated is ( ). (A) 40g (B) 50g (C) 60g (D) 70g"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 59,
"difficulty": "medium",
"question": "The preparation of CO~2~, O~2~\nand H~2~ in the lab is essential knowledge for middle school chemistry. The incorrect statement among the following is ( ) (A) The production devices for CO~2~ and O~2~ can be the same. (B) The generation devices for CO~2~ and O~2~ can be different. (C) The collection devices for CO~2~ and H~2~ are exactly the same. (D) The generation and collection devices for O~2~ and H~2~ can be the same."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 60,
"difficulty": "medium",
"question": "When using wooden utility poles, the surface part buried in the ground is often charred. The main purpose of this is (\n) (A) Burn the borer to death (B) Make the wooden pole hard (C) Drying wood to prevent rotting (D) Form a chemically stable carbon layer."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 61,
"difficulty": "easy",
"question": "Low-carbon living advocates for us to pay attention to environmental protection in our daily lives, reducing the amount of carbon dioxide in the air. The following practices are in line with the concept of low-carbon living ( ) (A) Reduce the use of fossil fuels (B) Using Ethanol Gasoline (C) Use disposable wooden chopsticks more often. (D) Use private cars for travel more often."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 62,
"difficulty": "easy",
"question": "The substance that causes \"carbon monoxide poisoning\" is ( ) (A) Nitrogen (B) Oxygen (C) Carbon Monoxide (D) Carbon Dioxide"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 63,
"difficulty": "medium",
"question": "Water is the source of life. The correct statement about water is ( ) (A) The water of the Yangtze River is pure. (B) Long-term consumption of hard water is beneficial to human health. (C) Industrial wastewater must be treated to meet standards before discharge. (D) Filtration can remove all impurities from water."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 64,
"difficulty": "easy",
"question": "The \"3H~2~SO~4~\" contains the numbers \"1, 2, 3, 4\". The incorrect statement about what these numbers represent is ( ) (A) \"1\" indicates the number of sulfur elements. (B) \"2\" represents the number of hydrogen atoms in each molecule. (C) \"3\" indicates the number of molecules. (D) \"4\" represents the number of oxygen atoms in each molecule."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 65,
"difficulty": "medium",
"question": "The following statement about acid is incorrect ( ) (A) Concentrated sulfuric acid needs to be stored in a sealed container, which is related to its volatility. (B) Concentrated sulfuric acid and concentrated hydrochloric acid both have strong corrosive properties. (C) Concentrated hydrochloric acid will form a white mist in the air. (D) When concentrated hydrochloric acid and concentrated sulfuric acid are left open, the mass fraction of the solute in both decreases."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 66,
"difficulty": "medium",
"question": "The correct understanding of the following neutralization reaction is (A) The essence of the reaction is the formation of water molecules from the reaction of hydrogen ions with hydroxide ions. (B) The reactions produced by salt and water are neutralization reactions. (C) Treating excess stomach acid with aluminum hydroxide is a neutralization reaction. (D) The phenomenon of neutralization reaction is very obvious."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 67,
"difficulty": "medium",
"question": "After insects such as mosquitoes and ants bite humans, they inject a substance called formic acid (also known as ant acid) into the human body, causing the skin to become red, swollen, and painful. To alleviate the swelling and pain, you can apply the following substances. (A) Ammonia Water (B) Sodium Hydroxide Solution (C) Vinegar (D) Salt Water"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 68,
"difficulty": "medium",
"question": "Understanding the acidity and alkalinity of solutions is of great significance to production, life, and human activities. The correct statement about the pH of the solution is ( ) (A) The gastric juice is highly acidic, and drinking a large amount of water on an empty stomach can cause the pH of the gastric juice to drop in a short period of time. (B) Blood is weakly alkaline. After intense exercise, if CO~2~ in the blood cannot be expelled in time, the pH of the blood will rise. (C) Using a glass rod dipped in water to take a solution for pH testing will definitely result in a reading that is either too high or too low. (D) Hair should be maintained in a weakly acidic environment. The pH range of ordinary shampoo is 7.5~10.0, and the pH range of conditioner is 2.8~3.5. Therefore, you should use shampoo first and then conditioner when washing your hair."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 69,
"difficulty": "medium",
"question": "The substance that generally does not undergo complex decomposition reactions with other substances in aqueous solution is ( ) (A) Potassium Nitrate (B) Sodium Hydroxide (C) Sodium Carbonate (D) Acetic Acid"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 70,
"difficulty": "medium",
"question": "Health is an eternal theme for mankind. The following incorrect statement about chemistry and health is (A) Calcium deficiency in the human body can lead to osteoporosis. (B) Iodine deficiency in the human body can cause thyroid enlargement. (C) Moldy rice can be eaten after being washed multiple times. (D) Baking soda can be used as a leavening agent for baking pastries."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 71,
"difficulty": "medium",
"question": "A certain metal is placed in dilute sulfuric acid, no bubbles are produced, this metal could be ( ) (A) Aluminum (B) Copper (C) Magnesium (D) Iron"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 72,
"difficulty": "medium",
"question": "Given the chemical reaction: X + YSO~4~ = Y + XSO~4~, the correct judgment based on this reaction information is ( ) (A) X must be the metal iron. (B) Y must be the metal copper. (C) The metal reactivity of X is stronger than Y. (D) The metal reactivity of Y is stronger than X."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 73,
"difficulty": "medium",
"question": "In the raw materials for iron smelting, in addition to iron ore, coke, and air, what should also be added is (A) Carbon Monoxide (B) Limestone (C) Manganese Dioxide (D) Ferrous Carbide"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 74,
"difficulty": "medium",
"question": "The following description about iron rusting is incorrect (A) Physical changes always accompany the rusting of iron. (B) The essence of iron rusting is the reaction of iron with oxygen in the air, resulting in the formation of triiron tetroxide. (C) When iron rusts, iron undergoes slow oxidation. (D) When iron rusts, it releases heat that is difficult to detect."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 75,
"difficulty": "medium",
"question": "Metal resources are non-renewable resources, and the utilization and protection of metal resources is the responsibility of modern citizens. The following incorrect statement about the use and protection of metal resources is ( ) (A) Vigorously exploit rare metal minerals to ensure the supply of metal materials. (B) Improve the recycling utilization rate of scrap metal (C) By adopting various effective anti-rust measures, the corrosion of metals can be avoided. (D) Replace metal with plastic in the manufacture of pipes and machine parts."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 76,
"difficulty": "medium",
"question": "The correct statement among the following is (A) The main component of rust is Fe3O4. (B) Iron tends to rust easily in dry air. (C) Rust can be used for smelting steel. (D) Rusty iron should be discarded immediately."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 77,
"difficulty": "medium",
"question": "The following statement about crystallization is incorrect ( ) (A) Crystallization refers to the process where crystals with regular geometric shapes are precipitated from a solution. (B) The solution obtained after crystallization is a saturated solution. (C) Only by evaporating the solvent can the crystals be precipitated. (D) The geometric shapes of crystals precipitated from solutions may vary depending on the substance."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 78,
"difficulty": "medium",
"question": "The correct statement about the solution is (A) The solution must be a mixture. (B) A dilute solution is definitely an unsaturated solution. (C) Cooling can definitely turn an unsaturated solution into a saturated solution. (D) The concentration of a saturated solution is definitely greater than that of an unsaturated solution."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 79,
"difficulty": "medium",
"question": "The table below shows the solubility values of KNO3 and NaCl at different temperatures. The correct statement is ( )\n --------------------------------------------------------------------------\n Temperature/°C 10 20 40 60 80\n -------------- --------- --------- --------- --------- --------- ---------\n Solubility/g KNO3 20.9 31.6 63.9 110 169\n NaCl 35.8 36.0 36.6 37.3 38.4\n -------------------------------------------------------------------------- (A) The solubility of KNO~3~ is greater than that of NaCl. (B) At 20°C, equal masses of KNO~3~ and NaCl are separately made into saturated solutions. The mass of water required for KNO~3~ is greater than that for NaCl. (C) Take saturated solutions of KNO3 and NaCl at 60°C, then cool them down to 20°C. The crystallization of KNO3 is greater than NaCl. (D) At 20°C, 20g of NaCl is fully dissolved in 50g of water. When the resulting solution is heated to 80°C, the solution becomes unsaturated."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 80,
"difficulty": "easy",
"question": "Domestic vinegar is a water solution with a mass fraction of 10% acetic acid, where the \"10%\" refers to ( ). (A) There are 10 g of acetic acid in 100 g of vinegar. (B) The aqueous solution of acetic acid contains 10g of acetic acid per 100g. (C) 100 g of water contains 10g of acetic acid. (D) The aqueous solution of 100 g acetic acid contains 10 g of water."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 81,
"difficulty": "easy",
"question": "**Solutions have a wide range of uses in our lives. The following substance is not a solution ( ) (A) Baijiu (B) Distilled Water (C) Medical Alcohol (D) Saline Solution"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 82,
"difficulty": "medium",
"question": "The toilet cleaner contains hydrochloric acid, which, if accidentally spilled on a marble floor, will make a hissing sound and produce gas. This gas is ( ) (A) Carbon Dioxide (B) Oxygen (C) Hydrogen (D) Sulfur Dioxide"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 83,
"difficulty": "medium",
"question": "**A certain amount of metal M is added to a mixed solution of ZnSO~4~ and CuSO~4~. After sufficient reaction, the mixture is filtered to obtain solid residue. The filtrate is colorless, and when dilute hydrochloric acid is dripped into the residue, bubbles are produced. The correct judgment among the following is ( ) (A) Metal Reactivity: M>Zn>Cu (B) The filtrate may only contain one type of solute. (C) The residue definitely contains the metal M. (D) The following reaction definitely occurred in the process: M+CuSO4=Cu+MSO4"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 84,
"difficulty": "medium",
"question": "The toilet cleaner contains hydrochloric acid. If accidentally spilled on a marble floor, it will make a hissing sound and gas will be produced. This gas is ( ) (A) Carbon Dioxide (B) Oxygen (C) Hydrogen (D) Sulfur Dioxide"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 85,
"difficulty": "easy",
"question": "Put a small amount of the following substances into water, stir thoroughly, the ones that can produce a colorless solution are (\n) (A) Potassium Permanganate (B) Rapeseed Oil (C) Flour (D) White Sugar"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 86,
"difficulty": "easy",
"question": "Among the following measures, the one that cannot prevent metal products from rusting is ( ) (A) Painting on the surface (B) Apply oil on the surface (C) Chrome plated on the surface (D) Wipe with a damp cloth."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 87,
"difficulty": "easy",
"question": "The following solution can turn the purple litmus solution into blue is ( ) (A) Clarified Lime Water (B) NaCl Solution (C) Dilute Sulfuric Acid (D) KNO~3~ Solution"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 88,
"difficulty": "medium",
"question": "After adding colorless phenolphthalein solution, the solution does not show color. If purple litmus solution is added, the correct statement among the following is ( ) (A) Must show red color (B) Possibly Purple (C) May appear blue (D) Definitely colorless"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 89,
"difficulty": "medium",
"question": "Place a small amount of the following substances into water, stir thoroughly, the ones that can form a solution are (\n) (A) Iodine (B) Gasoline (C) Potassium Permanganate (D) Flour"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 90,
"difficulty": "easy",
"question": "The following materials belong to synthetic materials are ( ) (A) Pig Iron (B) Cotton (C) Plastic (D) Ceramic"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 91,
"difficulty": "easy",
"question": "The metal that is liquid at room temperature is ( ) (A) Mercury (B) Gold (C) Silver (D) Aluminum"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 92,
"difficulty": "medium",
"question": "The process in which the temperature of the solution will noticeably decrease when the following substances are dissolved in water is ( ) (A) Sodium Chloride (B) Ammonium Nitrate (C) Concentrated Sulfuric Acid (D) Sodium Hydroxide"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 93,
"difficulty": "medium",
"question": "There are three types of metals, Y, Y, and Z. If X, Y, and Z are separately placed into dilute sulfuric acid, X and Z dissolve and produce gas, while Y remains unchanged. If X is placed into a salt solution of Z, after a while, Z is precipitated on the surface of X. Based on the above experimental facts, determine the order of metallic activity for X, Y, and Z ( ) (A) X>Y>Z (B) Y>Z>X (C) X > Z > Y (D) Z>X>Y"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 94,
"difficulty": "medium",
"question": "According to the order of metal activity, the following container and its solution will not undergo a chemical reaction is ( ) (A) Store hydrochloric acid in an iron container. (B) Store hydrochloric acid in a copper container. (C) Hold the silver nitrate solution in an iron container (D) Fill a copper container with silver nitrate solution."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 95,
"difficulty": "easy",
"question": "**The following items are primarily made of alloy are ( ) (A) Plastic Water Cup (B) Bronze Statue (C) Car Tire (D) Woolen Coat"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 96,
"difficulty": "easy",
"question": "The rational application of fertilizers is an important means of increasing agricultural yield. The following fertilizer belongs to potassium fertilizer is ( ) (A) KCl (B) (NH4)2SO4 (C) NH4Cl (D) Ca3(PO4)2"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 97,
"difficulty": "easy",
"question": "The following substance cannot provide energy to the human body is ( ) (A) Fats and Oils (B) Starch (C) Vitamin (D) Protein"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 98,
"difficulty": "medium",
"question": "The correct statement among the following is ( ) (A) Eating cooked moldy peanuts (B) Preserving aquatic products with formaldehyde (C) Eat fresh vegetables and fruits (D) Iron deficiency can cause osteoporosis."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 99,
"difficulty": "medium",
"question": "The main material used in the following daily necessities belongs to organic synthetic materials is ( ) (A) Wool Scarf (B) Acrylic Coffee Table (C) Titanium Alloy Glasses Frame (D) Cotton Bag"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 100,
"difficulty": "medium",
"question": "When a metal reacts with a solution of a metal compound in a displacement reaction, very reactive metals such as potassium, calcium, sodium, etc., cannot be used. This is because these metals can react with water at room temperature and cannot displace the metal in the solution of the metal compound. For example, the chemical reaction that occurs when Na is put into a CuSO4 solution is 2Na+2H2O = 2NaOH+H2↑ 2NaOH+ CuSO4===Cu(OH)2↓+Na2 SO4.\n\n**Exercise 1**\nThere are three types of metal sheets, X, Y, and Z, which are put into dilute sulfuric acid respectively. Bubbles are produced on the surfaces of X and Z, but there are no obvious phenomena for Y. When X is put into a ZCln solution, there are no obvious phenomena. Determine the order of the reactivity of these three metals from strong to weak is (__). (A) X>Y>Z (B) Z>X>Y (C) X > Z > Y (D) Y>X>Z"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 101,
"difficulty": "medium",
"question": "The following measures can increase the solubility of potassium nitrate in water are ( ) (A) Improve the quality of water (B) Crush the potassium nitrate and continuously stir during the dissolution process. (C) Increase the mass of potassium nitrate (D) Raise the temperature of the solution."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 102,
"difficulty": "medium",
"question": "The diagram shows the solubility curve of substance A (excluding crystalline water):\nTemperature/°C\nSolubility/g\nA\nB\nC\nD\n70\n50\nA\nt~1~\nt~2~\n0\nAmong the solutions of substance A represented by the four points A, B, C, and D, the correct relationship of the mass fraction of the solute is ( ). (A) A>C=D>B (B) A is greater than C, which is greater than B, which is equal to D. (C) A>B>D=C (D) A>B=D>C"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 103,
"difficulty": "easy",
"question": "Before chrome plating (Cr) on the surface of iron parts, the rust on the surface of the iron parts needs to be removed. The available reagent is ( ). (A) Water (B) Dilute Hydrochloric Acid (C) Sodium Hydroxide Solution (D) You didn't provide any Chinese content for translation. Please provide the text you want translated."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 104,
"difficulty": "medium",
"question": "After separately exposing clarified lime water and concentrated sulfuric acid to air for a period of time, the common change that occurs is (\n) (A) The mass of the solution decreases (B) The concentration of the solution increases. (C) The mass of the solute decreases (D) The quality of the solvent increases."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 105,
"difficulty": "medium",
"question": "The following description about sodium hydroxide is not correct ( ) (A) Exposed to air, it easily absorbs moisture. (B) Can absorb carbon dioxide from the air (C) Its aqueous solution can turn the solution of litmus red. (D) Has a strong corrosive effect on the skin."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 106,
"difficulty": "easy",
"question": "The following reaction belongs to neutralization reaction is ( ) (A) Ca(OH)2 + CO2 == CaCO3↓ + H2O (B) CuO + 2HCl == CuCl2 + H2O (C) H~2~SO~4~ + 2KOH == K~2~SO~4~ + 2H~2~O (D) 2HCl + CaCO3 == CaCl2 + H2O + CO2↑"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 107,
"difficulty": "medium",
"question": "The venom of a wasp is alkaline. If you are stung by a wasp, applying the following substances can relieve pain ( ) (A) Salt Water (pH≈7) (B) Toothpaste (pH≈9) (C) Soap (pH≈10) (D) Rice Vinegar (pH≈3)"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 108,
"difficulty": "medium",
"question": "The correct correspondence between the substances, main chemical components, and uses listed in the table below is ( )\n ------------------------------------------------------------------------\n Option Substance Main Chemical Component Use\n ----------- --------------- ---------------- ---------------------------\n A Caustic Soda NaOH Can be used as a desiccant for bagged food\n B Marble CaCO~3~ Can be used as a building material\n C Lime Water CaO Can improve acidic soil\n D Baking Soda NaHCO~3~ Used to treat excess stomach acid\n ------------------------------------------------------------------------ (A) The correct correspondence among the substance, the chemical formula of the main component, and its use in the table is ( )\n\n------------------------------------------------------------------------\nOption Substance Main Chemical Component Use\n----------- --------------- ---------------- ---------------------------\nA Caustic Soda NaOH Can be used as a desiccant for bagged food\nB Marble CaCO~3~ Can be used as a building material\nC Lime Water CaO Can improve acidic soil\nD Baking Soda NaHCO~3~ Used to treat excessive stomach acid\n------------------------------------------------------------------------ (B) The correct correspondence among the substance, the chemical formula of the main component, and the usage in the table is ( )\n\n------------------------------------------------------------------------\nOption Substance Main Chemical Component Usage\n----------- --------------- ---------------- ---------------------------\nA Caustic Soda NaOH Can be used as a desiccant for bagged food\nB Marble CaCO~3~ Can be used as a building material\nC Lime Water CaO Can improve acidic soil\nD Baking Soda NaHCO~3~ Used to treat excessive stomach acid\n------------------------------------------------------------------------ (C) The correct correspondence among the substance, the chemical formula of the main component, and the use in the table is ( )\n\n------------------------------------------------------------------------\nOptions Substance Main Chemical Component Use\n--------- --------------- ---------------- ---------------------------\nA Caustic Soda NaOH Can be used as a desiccant for bagged food\nB Marble CaCO~3~ Can be used as a building material\nC Lime Water CaO Can improve acidic soil\nD Baking Soda NaHCO~3~ Used for treating excess stomach acid\n------------------------------------------------------------------------ (D) The correct correspondence among the substance, the chemical formula of the main component, and its use in the table is ( )\n\n------------------------------------------------------------------------\nOption Substance Main Chemical Component Use\n----------- --------------- ---------------- ---------------------------\nA Caustic Soda NaOH Can be used as a desiccant for bagged food\nB Marble CaCO~3~ Can be used as a building material\nC Lime Water CaO Can improve acidic soil\nD Baking Soda NaHCO~3~ Used to treat excess stomach acid\n------------------------------------------------------------------------"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 109,
"difficulty": "medium",
"question": "**The following statement about the solution is incorrect ( ) (A) A solution is a homogeneous, stable mixture. (B) The solute in the solution can be a solid, liquid, or gas. (C) A saturated solution is definitely a concentrated solution, an unsaturated solution is definitely a dilute solution. (D) Detergents can wash away oil stains on clothes because they have an emulsifying effect."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 110,
"difficulty": "medium",
"question": "The temperature of a cup of potassium nitrate solution at 40 °C is now lowered to 20 °C, resulting in a small amount of crystals precipitating. The following statement that is incorrect is ( ) (A) The solution at 40 °C must be a saturated solution. (B) The mass fraction of solute in the solution at 20 °C is smaller than that at 40 °C. (C) The solution at 20 °C must be a saturated solution. (D) The quality of the solvent has not changed."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 111,
"difficulty": "medium",
"question": "The lab needs to prepare a 50g 6% NaCl solution. During the solution preparation process, the incorrect method is ( ) (A) When using a medicine spoon to take solid NaCl, place the bottle cap upside down on the table. (B) Stir with a glass rod to accelerate the dissolution of solid NaCl. (C) Read the measurement when taking water with a measuring cylinder by looking upwards. (D) When weighing, if the balance pointer deviates to the right, you should add solid NaCl to the left pan until the balance is level."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 112,
"difficulty": "easy",
"question": "Chemistry allows us to appreciate the beauty of the color of solutions. Which of the following substances can form a colored solution when added to water? ( ) (A) Calcium Carbonate (B) Potassium Permanganate (C) Vegetable Oil (D) Sodium Chloride"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 113,
"difficulty": "easy",
"question": "**Gold can be made into gold foil and drawn into gold wire, which indicates that gold has good ( ) (A) Conductivity (B) Elongation (C) Thermal Conductivity (D) Corrosion Resistance"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 114,
"difficulty": "medium",
"question": "**A certain amount of aluminum powder is added to a solution containing Mg(NO~3~)~2~, Cu(NO~3~)~2~, AgNO~3~ as solutes. After sufficient reaction, the solution is filtered, and the filtrate is colorless; dilute hydrochloric acid is added dropwise to the residue, with no noticeable phenomena. The following statement that is incorrect is ( ) (A) There must be Ag (Silver) and Cu (Copper) in the residue. (B) The residue definitely contains Ag (Silver), might contain Cu (Copper), but does not contain Mg (Magnesium). (C) The filtrate definitely does not contain Cu(NO3)2, AgNO3. (D) The filtrate definitely contains Al(NO3)3, Mg(NO3)2."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 115,
"difficulty": "medium",
"question": "Among the following ores, the main component that does not belong to oxides is ( ) (A) Hematite (B) Magnetite (C) Rhombic Iron Ore (D) Bauxite"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 116,
"difficulty": "easy",
"question": "**Among the following substances, which one is yellow at room temperature? ( ) (A) Gold (B) Iron (C) Iodine (D) Copper Sulfate Crystals"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 117,
"difficulty": "medium",
"question": "**Among the following substances, the one with the correct reagent and operation method for removing small amounts of impurities is ( )\n ------ ------------ ---------- ------------------------------------------\n Option Substance Impurity Reagent and Operation Method for Removal\n A Carbon Dioxide Carbon Monoxide Introduce oxygen, ignite\n B Hydrogen Hydrogen Chloride First pass through excess sodium hydroxide solution, then through excess concentrated sulfuric acid\n C Zinc Powder Iron Powder Add an appropriate amount of zinc chloride solution, filter after sufficient reaction\n D Potassium Chloride Solution Potassium Carbonate Add excess calcium chloride solution, filter after sufficient reaction\n ------ ------------ ---------- ------------------------------------------ (A) *Among the following substances, the correct reagents and methods for removing the small amount of impurities are ( ) ------ ------------ ---------- ------------------------------------------ Options Substance Impurity Reagent and method for removal A Carbon dioxide Carbon monoxide Introduce oxygen, ignite B Hydrogen Hydrochloric acid First pass through excess sodium hydroxide solution, then through excess concentrated sulfuric acid C Zinc powder Iron powder Add an appropriate amount of zinc chloride solution, filter after sufficient reaction D Potassium chloride solution Potassium carbonate Add excess calcium chloride solution, filter after sufficient reaction ------ ------------ ---------- ------------------------------------------ (B) *Among the following substances, the one that correctly uses the reagent and method for removing a small amount of impurities is ( ) ------ ------------ ---------- ------------------------------------------ Option Substance Impurity Reagent and method for removal A Carbon dioxide Carbon monoxide Introduce oxygen, ignite B Hydrogen Hydrochloric acid First pass through excess sodium hydroxide solution, then through excess concentrated sulfuric acid C Zinc powder Iron powder Add an appropriate amount of zinc chloride solution, filter after sufficient reaction D Potassium chloride solution Potassium carbonate Add excess calcium chloride solution, filter after sufficient reaction ------ ------------ ---------- ------------------------------------------ (C) *Among the following substances, the one with the correct impurity removal reagent and operation method (excluding a small amount of impurities mixed in) is ( ) ------ ------------ ---------- ------------------------------------------ Options Substance Impurity Impurity Removal Reagent and Operation Method A Carbon Dioxide Carbon Monoxide Introduce oxygen, ignite B Hydrogen Hydrochloric Acid First pass through excess sodium hydroxide solution, then through excess concentrated sulfuric acid C Zinc Powder Iron Powder Add an appropriate amount of zinc chloride solution, filter after sufficient reaction D Potassium Chloride Solution Potassium Carbonate Add excess calcium chloride solution, filter after sufficient reaction ------ ------------ ---------- ------------------------------------------ (D) *Among the following substances, the correct reagent and operation method for removing the small amount of impurities are ( ) ------ ------------ ---------- ------------------------------------------ Options Substance Impurity Reagent and operation method for removal A Carbon dioxide Carbon monoxide Introduce oxygen, ignite B Hydrogen Hydrochloric acid First pass through excess sodium hydroxide solution, then through excess concentrated sulfuric acid C Zinc powder Iron powder Add an appropriate amount of zinc chloride solution, filter after sufficient reaction D Potassium chloride solution Potassium carbonate Add excess calcium chloride solution, filter after sufficient reaction ------ ------------ ---------- ------------------------------------------"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 118,
"difficulty": "medium",
"question": "Student Xiao Dong's tomato plants are not growing vigorously and the leaves are light green. The fertilizer that needs to be applied is (\n) (A) Urea (B) Phosphate Rock Powder (C) Potassium Carbonate (D) Potassium Dihydrogen Phosphate"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 119,
"difficulty": "medium",
"question": "The incorrect statement about \"K~2~CO~3~\" is ( ) (A) Name: Potassium Carbonate (B) Category: Salt (C) Flame Test: Yellow (D) Usage: Can be used as potassium fertilizer."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 120,
"difficulty": "medium",
"question": "The nutrient solution required for a certain hydroponic cultivation consists of inorganic salts containing elements such as N, P, K, Ca, etc. This formula is suitable for the cultivation of bitter gourd, cucumber, and lettuce. The possible components of the nutrient solution are (\n) (A) P2O5 (B) KOH (C) NH4Cl (D) CaCO3"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 121,
"difficulty": "medium",
"question": "In a certain solution, there are a large number of H^+, SO4^2-, Cl^- ions. The ions that may also exist in large quantities in this solution are ( ) (A) OH^- (B) Ba^2+^ (C) NH4+ (D) Ag^+^"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 122,
"difficulty": "medium",
"question": "The following statement about the uses of salt is incorrect ( ) (A) Sodium chloride is an important seasoning. (B) Sodium nitrite can be used as a substitute for table salt in pickling food. (C) Baking soda can be used for making pastries. (D) Potassium carbonate can be used as a chemical fertilizer."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 123,
"difficulty": "medium",
"question": "The reagents needed to sequentially separate a mixture composed of three solid substances, CaCO~3~, NaCl, and MgCl~2~, are ( ) (A) H~2~O NaOH HCl (B) H~2~O KOH HCl (C) H2O NaOH H2SO4 (D) H2O KOH H2SO4"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 124,
"difficulty": "easy",
"question": "**The chemical element in milk that promotes bone growth and strengthens teeth is ( ) (A) Sodium (B) Iron (C) Calcium (D) Zinc"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 125,
"difficulty": "easy",
"question": "**Lifestyle habits directly affect human health\n, which of the following dietary habits of Xiao Ming's family is scientifically reasonable ( ) (A) Xiao Ming has a long-term preference for \"Western fast food.\" (B) Milk should not be wasted, even if the food has spoiled, it is still used. (C) In order to maintain her figure, mom only eats vegetables and fruits. (D) Dad enjoys sports and often drinks beverages containing inorganic salts after sweating a lot."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 126,
"difficulty": "easy",
"question": "**The correct approach is ( ) (A) Making food with moldy peanuts (B) Soak fish and shrimp in formaldehyde solution for preservation. (C) Consuming iodized salt can supplement the iodine element that the human body lacks. (D) Excessive sodium nitrite added in food"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 127,
"difficulty": "easy",
"question": "The following materials belong to synthetic materials are ( ) (A) Cotton (B) Nylon (C) Wool (D) Silk"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 128,
"difficulty": "easy",
"question": "Among the following substances, the important component that does not belong to the basic nutrients required by the human body is ( ) (A) White Sugar (B) White Flour (C) Baijiu (D) Plain Boiled Water"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 129,
"difficulty": "medium",
"question": "Materials are a symbol of the progress of the times. The following statement about materials is incorrect ( ) (A) Plastic belongs to organic synthetic high polymer materials. (B) Glass belongs to silicate materials. (C) The silicon used to manufacture chips is a non-metallic material. (D) Aluminum magnesium alloy belongs to composite materials."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 130,
"difficulty": "easy",
"question": "The following food is rich in fats ( ) (A) Boiled Tofu (B) Braised Pork in Soy Sauce (C) Old Dough Steamed Bun (D) Stir-Fried Spinach"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 131,
"difficulty": "medium",
"question": "**When Xiao Ming is investigating the properties of dilute sulfuric acid, the correct statement is ( ) (A) After reacting with litmus test solution, the dilute H~2~SO~4~ turns the solution blue. (B) If X can react to produce H~2~, then X is Cu. (C) Reacts with metal oxides, generating salt and water. (D) If a neutralization reaction occurs with Y, then Y must be NaOH."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 132,
"difficulty": "medium",
"question": "The following application is unrelated to the principle of neutralization reaction ( ) (A) Treating residual sulfuric acid in wastewater with calcium hydroxide solution (B) Prepare Bordeaux mixture with slaked lime and copper sulfate (C) Take medication containing magnesium hydroxide to treat excessive stomach acid. (D) Improve Acidic Soil with Hydrated Lime"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 133,
"difficulty": "easy",
"question": "Drops of purple litmus solution were separately added to three colorless solutions: A, B, and C. It was observed that solution A turned red, solution B turned blue, and solution C turned purple. The order of their pH from lowest to highest is ( ) (A) A, B, C (B) A, C, B (C) B, A, C (D) C, A, B"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 134,
"difficulty": "medium",
"question": "The correct statement about the solution is ( ) (A) The solutions are all colorless and transparent. (B) If the external conditions remain unchanged, the sucrose solution will stratify after being left for a long period of time. (C) In iodine tincture, iodine is the solute and alcohol is the solvent. (D) The salty taste of the upper layer in the unsaturated salt solution is lighter than the lower layer."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 135,
"difficulty": "easy",
"question": "**The following chemical formula represents the main components of a certain chemical fertilizer, among which the one that belongs to nitrogen fertilizer is (\n) (A) K2CO3 (B) NH4NO3 (C) Ca(H2PO4)2 (D) K3PO4"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 136,
"difficulty": "medium",
"question": "**The following incorrect set of organized knowledge on a certain topic is ( )\n+--------------------------------------+-------------------------------+ (A) Safety Common Sense (B) Composition and Properties\n|+--------------------------------------+-------------------------------+|\n| ① If household appliances catch fire, immediately extinguish with water | ① Water is composed of two elements, hydrogen and oxygen ||\n| | ||\n| ② If there is a gas leak, immediately turn on the exhaust fan switch | ② Molecules and atoms are constantly in motion |\n|+--------------------------------------+-------------------------------+| (C) Chemistry and Environment (D) Chemistry and Life\n+--------------------------------------+-------------------------------+\n| ① Waste classification benefits environmental protection and resource reuse | ① Infants and teenagers with calcium deficiency can suffer from rickets |\n| | |\n| ② Arbitrary discharge of industrial wastewater can lead to environmental pollution | ② Polyethylene plastic is an organic synthetic material |\n+--------------------------------------+-------------------------------+"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 137,
"difficulty": "medium",
"question": "After a chlorine gas explosion occurred at a chemical factory, the rescue team evacuated the public while spraying a dilute solution of sodium hydroxide at the scene with a water cannon. The next day, the smell of chlorine was no longer detectable at the scene, and the yellow-green color of chlorine was no longer visible. The following does not belong to the physical properties of chlorine gas ( ) (A) Can react with sodium hydroxide solution (B) Has a pungent smell\\ (C) Yellow-green (D) Under normal conditions, it is a gas."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 138,
"difficulty": "easy",
"question": "The following prevention methods for COVID-19 mainly involve chemical changes are ( ) (A) Open the window for ventilation (B) Wear a mask (C) Measure Body Temperature (D) Spraying Disinfectant"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 139,
"difficulty": "medium",
"question": "The statement about the properties and experimental phenomena of candles that is incorrect is ( ) (A) The gas produced after a candle burns can make clear lime water become cloudy. (B) The burning of a candle is accompanied by a melting process. (C) The candle burns in the air, emitting a blue flame, generating heat and producing white smoke. (D) Light the white smoke produced by a just-extinguished candle with a match, the candle can be re-ignited."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 140,
"difficulty": "medium",
"question": "Insert a burning stick into the gas collection bottles filled with exhaled gas and inhaled air respectively, and observe that the stick can continue to burn in the air bottle, but extinguishes in the exhaled gas bottle. This demonstrates that ( ) (A) The air is composed of gases such as nitrogen and oxygen. (B) The amount of carbon dioxide in exhaled air is greater than in the atmosphere. (C) The oxygen content in exhaled gas is less than that in the air. (D) The process of respiration is a physical change."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 141,
"difficulty": "easy",
"question": "Regarding the use of an alcohol lamp, the incorrect statement is ( ) (A) Light the alcohol lamp using another alcohol lamp. (B) Heat the test tube with the outer flame of the alcohol lamp. (C) Extinguish the alcohol lamp by covering it with the lamp cap. (D) The alcohol content in the alcohol lamp should not exceed $$\\frac{2}{3}$$ of the volume."
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 142,
"difficulty": "easy",
"question": "The one with a small concentration in the air and often used to make neon lights, flashlights, and various electric light sources is ( ) (A) Oxygen (B) Rare Gases (C) Nitrogen (D) Carbon Dioxide"
},
{
"subject": "chemistry",
"data_source": "AI4Chem/C-MHChem-Benchmark-Chinese-Middle-high-school-Chemistry-Test",
"id": 143,
"difficulty": "easy",