-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtest-01.json
More file actions
1371 lines (1371 loc) · 55.1 KB
/
Copy pathtest-01.json
File metadata and controls
1371 lines (1371 loc) · 55.1 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
{
"quiz_id": 2,
"title": "HSK 4 SAMPLE QUIZ",
"source": "Mandarin Zone (mandarinzone.com)",
"total_questions": 100,
"questions": [
{
"number": 1,
"original_id": 405,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-02.wav",
"options": [
"对",
"错"
],
"correct_answer_index": 0
},
{
"number": 2,
"original_id": 406,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-03.wav",
"options": [
"对",
"错"
],
"correct_answer_index": 1
},
{
"number": 3,
"original_id": 407,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-04.wav",
"options": [
"对",
"错"
],
"correct_answer_index": 1
},
{
"number": 4,
"original_id": 408,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-05.wav",
"text": "女朋友听过这个笑话。",
"options": [
"对",
"错"
],
"correct_answer_index": 0
},
{
"number": 5,
"original_id": 409,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-06.wav",
"options": [
"对",
"错"
],
"correct_answer_index": 1
},
{
"number": 6,
"original_id": 410,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-07.wav",
"options": [
"对",
"错"
],
"correct_answer_index": 0
},
{
"number": 7,
"original_id": 411,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-08.wav",
"options": [
"对",
"错"
],
"correct_answer_index": 0
},
{
"number": 8,
"original_id": 412,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-09.wav",
"options": [
"对",
"错"
],
"correct_answer_index": 1
},
{
"number": 9,
"original_id": 413,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-10.wav",
"options": [
"对",
"错"
],
"correct_answer_index": 0
},
{
"number": 10,
"original_id": 414,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-11.wav",
"options": [
"对",
"错"
],
"correct_answer_index": 0
},
{
"number": 11,
"original_id": 415,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-13.wav",
"options": [
"A 没纸了",
"B 男的没发",
"C 打印机坏了",
"D 传真机坏了"
],
"correct_answer_index": 0
},
{
"number": 12,
"original_id": 416,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-14.wav",
"options": [
"A 将来",
"B 理想",
"C 小说",
"D 职业"
],
"correct_answer_index": 2
},
{
"number": 13,
"original_id": 417,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-15.wav",
"options": [
"A 办签证",
"B 去学校",
"C 打网球",
"D 打羽毛球"
],
"correct_answer_index": 2
},
{
"number": 14,
"original_id": 418,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-16.wav",
"options": [
"A 不想出国",
"B 换个箱子",
"C 不符合规定",
"D 早点儿回来"
],
"correct_answer_index": 1
},
{
"number": 15,
"original_id": 419,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-17.wav",
"options": [
"A 变胖了",
"B 很难受",
"C 正在减肥",
"D 工作很辛苦"
],
"correct_answer_index": 2
},
{
"number": 16,
"original_id": 420,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-18.wav",
"options": [
"A 是研究生",
"B 参加工作了",
"C 已经毕业了",
"D 在准备考试"
],
"correct_answer_index": 3
},
{
"number": 17,
"original_id": 421,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-19.wav",
"options": [
"A 打扫",
"B 等人",
"C 爬山",
"D 购物"
],
"correct_answer_index": 2
},
{
"number": 18,
"original_id": 422,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-20.wav",
"options": [
"A 幽默",
"B 很难过",
"C 很粗心",
"D 没有耐心"
],
"correct_answer_index": 0
},
{
"number": 19,
"original_id": 423,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-21.wav",
"options": [
"A 很酸",
"B 很甜",
"C 很咸",
"D 很辣"
],
"correct_answer_index": 2
},
{
"number": 20,
"original_id": 424,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-22.wav",
"options": [
"A 他们输了",
"B 他们赢了",
"C 他们放弃了",
"D 他们很愉快"
],
"correct_answer_index": 0
},
{
"number": 21,
"original_id": 425,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-23.wav",
"options": [
"A 学钢琴",
"B 去旅游",
"C 做生意",
"D 锻炼身体"
],
"correct_answer_index": 1
},
{
"number": 22,
"original_id": 426,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-24.wav",
"options": [
"A 肚子疼",
"B 感冒了",
"C 觉得热",
"D 穿得太少"
],
"correct_answer_index": 1
},
{
"number": 23,
"original_id": 427,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-25.wav",
"options": [
"A 周末",
"B 下周",
"C 两周后",
"D 下个月"
],
"correct_answer_index": 0
},
{
"number": 24,
"original_id": 428,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-26.wav",
"options": [
"A 医生",
"B 导游",
"C 卖家具的",
"D 开出租车的"
],
"correct_answer_index": 2
},
{
"number": 25,
"original_id": 429,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-27.wav",
"options": [
"A 我不会",
"B 马上来",
"C 没法解释",
"D 解决不了"
],
"correct_answer_index": 1
},
{
"number": 26,
"original_id": 430,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-29.wav",
"text": "男的最可能在哪儿?",
"options": [
"A 医院",
"B 宾馆",
"C 图书馆",
"D 体育场"
],
"correct_answer_index": 0
},
{
"number": 27,
"original_id": 431,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-30.wav",
"options": [
"A 很奇怪",
"B 很随便",
"C 很一般",
"D 很正式"
],
"correct_answer_index": 3
},
{
"number": 28,
"original_id": 432,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-31.wav",
"options": [
"A 撞车了",
"B 车速太慢",
"C 他们是记者",
"D 女的很小心"
],
"correct_answer_index": 3
},
{
"number": 29,
"original_id": 433,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-32.wav",
"options": [
"A 生病了",
"B 丢了电脑",
"C 忘了密码",
"D 弄坏镜子了"
],
"correct_answer_index": 2,
"note": "[Audio missing in source data — original audio file at the same URL as Q26 of this test]",
"text": "[Audio file missing in source data — please skip this question or use the answer key for reference.]"
},
{
"number": 30,
"original_id": 434,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-33.wav",
"options": [
"A 5点",
"B 下班以后",
"C 明天",
"D 下个星期"
],
"correct_answer_index": 2
},
{
"number": 31,
"original_id": 435,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-34.wav",
"options": [
"A 两元",
"B 3元5角",
"C 7元",
"D 9 元"
],
"correct_answer_index": 1
},
{
"number": 32,
"original_id": 436,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-35.wav",
"options": [
"A 买手机",
"B 去亲戚家",
"C 交电话费",
"D 找李大夫"
],
"correct_answer_index": 3
},
{
"number": 33,
"original_id": 437,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-36.wav",
"options": [
"A 毛巾",
"B 帽子",
"C 钥匙",
"D 笔记本"
],
"correct_answer_index": 2
},
{
"number": 34,
"original_id": 438,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-37.wav",
"options": [
"A 车上",
"B 火车站",
"C 电梯里",
"D 地铁上"
],
"correct_answer_index": 0
},
{
"number": 35,
"original_id": 439,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-38.wav",
"options": [
"A 公园",
"B 商店",
"C 洗手间",
"D 公共汽车"
],
"correct_answer_index": 1
},
{
"number": 36,
"original_id": 440,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-39.wav",
"options": [
"A 睡觉",
"B 散散步",
"C 洗个澡",
"D 回忆过去"
],
"correct_answer_index": 1
},
{
"number": 37,
"original_id": 441,
"type": "listening_choice",
"text": "这段话主要想告诉我们什么?",
"options": [
"A 要互相关心",
"B 做事要冷静",
"C 运动很重要",
"D 怎样改变心情"
],
"correct_answer_index": 3
},
{
"number": 38,
"original_id": 442,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-40.wav",
"options": [
"A 脾气好",
"B 爱做梦",
"C 很成功",
"D 工作压力大"
],
"correct_answer_index": 3
},
{
"number": 39,
"original_id": 443,
"type": "listening_choice",
"text": "他不同意儿子做什么?",
"options": [
"A 喝酒",
"B 抽烟",
"C 踢足球",
"D 说假话"
],
"correct_answer_index": 1
},
{
"number": 40,
"original_id": 444,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-41.wav",
"options": [
"A 警察",
"B 司机",
"C 学生",
"D 家长"
],
"correct_answer_index": 3
},
{
"number": 41,
"original_id": 445,
"type": "listening_choice",
"text": "那条路现在怎么样?",
"options": [
"A 变宽了",
"B 比较窄",
"C 禁止停车",
"D 没有红绿灯"
],
"correct_answer_index": 0
},
{
"number": 42,
"original_id": 446,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-42.wav",
"options": [
"A 失望",
"B 羡慕",
"C 后悔",
"D 激动"
],
"correct_answer_index": 3
},
{
"number": 43,
"original_id": 447,
"type": "listening_choice",
"text": "关于说话人,可以知道什么?",
"options": [
"A 是演员",
"B 结婚了",
"C 很年轻",
"D 没有得奖"
],
"correct_answer_index": 1
},
{
"number": 44,
"original_id": 448,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk4-1-43.wav",
"options": [
"A 家里",
"B 厨房",
"C 教室",
"D 会议室"
],
"correct_answer_index": 3
},
{
"number": 45,
"original_id": 449,
"type": "listening_choice",
"text": "他们正在做什么?",
"options": [
"A 开会",
"B 参观",
"C 听广播",
"D 看电视"
],
"correct_answer_index": 0
},
{
"number": 46,
"original_id": 450,
"type": "fill_in_blank",
"text": "虽然现在离( )还有段时间,但是不少人已经开始准备过年的东西了。",
"options": [
"A 随着",
"B 尝",
"C 春节",
"D 坚持",
"E 收拾"
],
"correct_answer_index": 2,
"explanation": "春节 (Chūnjié, Spring Festival) is a noun and the blank needs a time/event noun: 离…还有段时间 \"there is still a while before…\". 过年的东西 (\"things for New Year\") in the second clause confirms the festival context. 随着 is a preposition, 尝/坚持/收拾 are verbs — none fit after 离."
},
{
"number": 47,
"original_id": 451,
"type": "fill_in_blank",
"text": "研究证明,人们的心情会( )天气的变化而变化。",
"options": [
"A 随着",
"B 尝",
"C 春节",
"D 坚持",
"E 收拾"
],
"correct_answer_index": 0,
"explanation": "随着 (suízhe, along with / as) introduces change that follows another change: 心情会随着天气的变化而变化 \"mood changes as the weather changes\". The pattern 随着…而… is a fixed structure. The other options are a verb (尝), noun (春节), or verbs that cannot link two changes."
},
{
"number": 48,
"original_id": 452,
"type": "fill_in_blank",
"text": "明天可能下雨,你记得( )儿子带雨伞。",
"options": [
"A 随着",
"B 尝",
"C 春节",
"D 坚持",
"E 收拾",
"F 提醒"
],
"correct_answer_index": 5,
"explanation": "提醒 (tíxǐng, to remind) takes the pattern 提醒 + person + to do something: 提醒儿子带雨伞 \"remind our son to take an umbrella\". The cue is 记得 (\"remember to…\") plus a person + action after the blank — only a verb of telling/reminding works there."
},
{
"number": 49,
"original_id": 453,
"type": "fill_in_blank",
"text": "这是你做的饺子?真香!我先( )一个。",
"options": [
"A 随着",
"B 尝",
"C 春节",
"D 坚持",
"E 收拾"
],
"correct_answer_index": 1,
"explanation": "尝 (cháng, to taste) fits 我先尝一个 \"let me taste one first\" — the context is freshly made dumplings (真香 \"smells great\"). 尝一个 needs a single-syllable verb taking 一个 as its object; 坚持/收拾 make no sense with food."
},
{
"number": 50,
"original_id": 454,
"type": "fill_in_blank",
"text": "快把房间( )一下,准备一些水果,一会儿有客人要来。",
"options": [
"A 随着",
"B 尝",
"C 春节",
"D 坚持",
"E 收拾"
],
"correct_answer_index": 4,
"explanation": "收拾 (shōushi, to tidy up) collocates with 房间: 把房间收拾一下 \"tidy the room a bit\". The 把-structure needs a verb that acts on the room, and guests arriving (有客人要来) is the classic reason for tidying. 坚持 (persist) cannot take 房间 as object."
},
{
"number": 51,
"original_id": 455,
"type": "fill_in_blank",
"text": "A:这些瓶子的数量对吧?\nB:我都仔细检查过了,( )没问题。",
"options": [
"A 反映",
"B 陪",
"C 温度",
"D 堵车",
"E 来得及",
"F 肯定"
],
"correct_answer_index": 5,
"explanation": "肯定 (kěndìng, definitely) is used as an adverb of certainty: 我都仔细检查过了,肯定没问题 \"I checked carefully — definitely no problem\". After 检查过了, the speaker expresses confidence; only an adverb can sit before 没问题. 反映/陪 are verbs, 温度 a noun."
},
{
"number": 52,
"original_id": 456,
"type": "fill_in_blank",
"text": "A:讨论会开得顺利吗?\nB:顺利,大家( )了不少管理过程中出现的问题,对下一步工作很有帮助。",
"options": [
"A 反映",
"B 陪",
"C 温度",
"D 堵车",
"E 来得及"
],
"correct_answer_index": 0,
"explanation": "反映 (fǎnyìng, to report / reflect [issues]) is the formal verb for raising problems at a meeting: 反映了…问题 \"raised quite a few problems\". Note the classic trap: 反映 (report) vs 反应 (reaction). 陪 (accompany) and 堵车 (traffic jam) cannot take 问题 as object."
},
{
"number": 53,
"original_id": 457,
"type": "fill_in_blank",
"text": "A:火车快开了,他怎么还没来?\nB:他一般很准时的,可能是路上( ),别着急,再等等。",
"options": [
"A 反映",
"B 陪",
"C 温度",
"D 堵车",
"E 来得及"
],
"correct_answer_index": 3,
"explanation": "堵车 (dǔchē, traffic jam) explains why a punctual person (他一般很准时) is late: 可能是路上堵车 \"probably stuck in traffic on the way\". 路上 (\"on the road\") is the collocation cue. 来得及 means \"still have time\" which contradicts being late."
},
{
"number": 54,
"original_id": 458,
"type": "fill_in_blank",
"text": "A:快点儿,今天千万不能迟到。\nB:还有 10 分钟呢,( )。",
"options": [
"A 反映",
"B 陪",
"C 温度",
"D 堵车",
"E 来得及"
],
"correct_answer_index": 4,
"explanation": "来得及 (láidejí, there is still time) answers the urgency in A's line: 还有 10 分钟呢,来得及 \"there are still 10 minutes — we'll make it\". It is the fixed potential form; its opposite 来不及 means \"too late\". A direct response to 千万不能迟到 needs exactly this reassurance."
},
{
"number": 55,
"original_id": 459,
"type": "fill_in_blank",
"text": "A:我( )你一起去吧,可以顺便活动活动。\nB:太好了,我们现在就出发。",
"options": [
"A 反映",
"B 陪",
"C 温度",
"D 堵车",
"E 来得及"
],
"correct_answer_index": 1,
"explanation": "陪 (péi, to accompany) fits 我陪你一起去 \"I'll go along with you\" — 陪 + person + 一起 + verb is a high-frequency pattern. 顺便活动活动 (\"get some exercise while we're at it\") confirms someone joining a trip. 反映/堵车/来得及 cannot take 你 as object here."
},
{
"number": 56,
"original_id": 460,
"type": "reading_ordering",
"text": "排列顺序:\nA 她就给我留下了极深的印象\nB 那就是她特别热情、特别友好\nC 第一次和王小姐见面",
"options": [
"A. ABC",
"B. BAC",
"C. CAB"
],
"correct_answer_index": 2,
"explanation": "C must open: 第一次和王小姐见面 sets the scene (\"the first time I met Miss Wang\"). A follows with the result — 她就给我留下了极深的印象 (the 就 links to the first meeting). B explains what the impression was: 那就是… (\"namely, she is warm and friendly\") — 那 refers back to the impression, so B must come last. Order: CAB."
},
{
"number": 57,
"original_id": 461,
"type": "reading_ordering",
"text": "排列顺序:\nA 茶不仅仅是一种饮料\nB 它在中国有着几千年的历史\nC 而且还是一种文化",
"options": [
"A. ABC",
"B. ACB",
"C. BAC"
],
"correct_answer_index": 1,
"explanation": "A opens with the topic and the first half of the pair: 茶不仅仅是一种饮料 (\"tea is not merely a drink\"). 不仅…而且 is a fixed pair, so C (而且还是一种文化) must follow A directly. B adds the supporting fact about its history. The connective pair locks the order: ACB."
},
{
"number": 58,
"original_id": 462,
"type": "reading_ordering",
"text": "排列顺序:\nA 昨天我和同事去逛街\nB 可惜没有我穿的号了\nC 我看上了一双挺漂亮的鞋,还打折",
"options": [
"A. ABC",
"B. ACB",
"C. BAC"
],
"correct_answer_index": 1,
"explanation": "A sets the scene (昨天我和同事去逛街 \"went shopping yesterday\"). C continues the narrative: spotted a nice pair of discounted shoes (我看上了一双…鞋). B delivers the twist with 可惜 (\"unfortunately no size left\") — 可惜 signals a regret that must come after the thing regretted. Order: ACB."
},
{
"number": 59,
"original_id": 463,
"type": "reading_ordering",
"text": "排列顺序:\nA 所以你喜欢哪种颜色\nB 因为不同的颜色表示不同的性格\nC 就说明你是哪种性格的人",
"options": [
"A. ABC",
"B. BAC",
"C. BCA"
],
"correct_answer_index": 1,
"explanation": "B opens with the reason: 因为不同的颜色表示不同的性格 (\"colors express personalities\"). A picks up with 所以 (\"so whichever color you like…\") — 因为…所以 is the fixed pair. C completes A's sentence: 就说明你是哪种性格的人 (\"shows which personality you have\"); 哪种…就… ties A and C together. Order: BAC."
},
{
"number": 60,
"original_id": 464,
"type": "reading_ordering",
"text": "排列顺序:\nA 因为工作的需要\nB 所以我去过那里几次\nC 对当地的文化有一些简单的了解",
"options": [
"A. ABC",
"B. BAC",
"C. BCA"
],
"correct_answer_index": 0,
"explanation": "A gives the cause: 因为工作的需要 (\"because of work\"). B answers with 所以我去过那里几次 — 因为…所以 must run in this order. C states the result of those visits: gaining some understanding of the local culture, naturally last. Order: ABC."
},
{
"number": 61,
"original_id": 465,
"type": "reading_ordering",
"text": "排列顺序:\nA 被大家普遍使用的是汉语普通话\nB 中国是一个多民族的国家\nC 很多民族都有自己的语言",
"options": [
"A. ABC",
"B. BCA",
"C. CAB"
],
"correct_answer_index": 1,
"explanation": "B introduces the topic sentence: 中国是一个多民族的国家 (\"China is a multi-ethnic country\"). C elaborates: 很多民族都有自己的语言 (\"many ethnic groups have their own languages\"). A concludes with the contrast: what is universally used is Mandarin (被大家普遍使用的是汉语普通话). General → detail → conclusion: BCA."
},
{
"number": 62,
"original_id": 466,
"type": "reading_ordering",
"text": "排列顺序:\nA 还是从材料的质量上看\nB 无论从价格方面看\nC 这种盒子都是值得考虑的",
"options": [
"A. ABC",
"B. BAC",
"C. BCA"
],
"correct_answer_index": 1,
"explanation": "无论…还是…都 is the controlling pattern: B starts it (无论从价格方面看), A continues the alternative (还是从材料的质量上看), and C closes with 都 (这种盒子都是值得考虑的). The pair 无论 A 还是 B,都 C fixes the order as BAC."
},
{
"number": 63,
"original_id": 467,
"type": "reading_ordering",
"text": "排列顺序:\nA 这种鱼生活在深海中\nB 看起来像一个个会游泳的小电灯\nC 它们的身体能发出美丽的亮光",
"options": [
"A. ABC",
"B. ACB",
"C. BAC"
],
"correct_answer_index": 1,
"explanation": "A introduces the subject: 这种鱼生活在深海中 (\"this fish lives in the deep sea\"). C describes its key feature: 它们 (they — referring back to the fish) can glow. B gives the vivid comparison 看起来像…小电灯 (\"look like little swimming lamps\"), which depends on the glowing just described. Order: ACB."
},
{
"number": 64,
"original_id": 468,
"type": "reading_ordering",
"text": "排列顺序:\nA 是父母的鼓励给了她信心\nB 其实她小时候很普通\nC 让她后来终于成为一位优秀的演员",
"options": [
"A. ABC",
"B. BAC",
"C. BCA"
],
"correct_answer_index": 1,
"explanation": "B opens with the background: 其实她小时候很普通 (\"actually she was ordinary as a child\"). A introduces the turning point: 是父母的鼓励给了她信心 (\"her parents' encouragement gave her confidence\"). C states the outcome with 让她后来终于成为… (\"made her finally become an excellent actress\"). Background → cause → result: BAC."
},
{
"number": 65,
"original_id": 469,
"type": "reading_ordering",
"text": "排列顺序:\nA 我们还是经常打电话联系\nB 尽管已经毕业那么多年\nC 他是我大学时最好的同学",
"options": [
"A. ABC",
"B. BAC",
"C. CBA"
],
"correct_answer_index": 2,
"explanation": "C introduces who he is: 他是我大学时最好的同学 (\"my best classmate at university\"). B concedes time passing: 尽管已经毕业那么多年 (\"even though we graduated years ago\"). A completes the 尽管…还是 pair: 我们还是经常打电话联系 (\"we still call each other often\"). Order: CBA."
},
{
"number": 66,
"original_id": 470,
"type": "reading_comprehension",
"text": "小时候弟弟比我矮,现在却超过我了,看着他一米八二的个子,我真是羡慕极了。\n\n★ 根据这句话,可以知道现在:",
"options": [
"A 我一米八",
"B 我比弟弟矮",
"C 弟弟个子矮",
"D 我同情弟弟"
],
"correct_answer_index": 1,
"explanation": "The key contrast is 小时候弟弟比我矮,现在却超过我了 — \"he used to be shorter than me, but now has overtaken me\". 超过我 plus his height 一米八二 means the younger brother is now taller, i.e. 我比弟弟矮 (B). A confuses whose height 1.82m is; D misreads 羡慕 (envy) as 同情 (sympathy)."
},
{
"number": 67,
"original_id": 471,
"type": "reading_comprehension",
"text": "我是前天到北京的,想借这次机会去长城看看,可是公司的事情很多,时间安排得很紧张。\n\n★ 我最可能来北京:",
"options": [
"A 旅游",
"B 休息",
"C 出差",
"D 请假"
],
"correct_answer_index": 2,
"explanation": "想借这次机会去长城看看 (\"want to take this chance to see the Great Wall\") shows sightseeing is only incidental; 公司的事情很多,时间安排得很紧张 reveals the real purpose is work. Coming for company business = 出差 (chūchāi, business trip), answer C."
},
{
"number": 68,
"original_id": 472,
"type": "reading_comprehension",
"text": "地球是我们共同的家,保护环境就是保护我们自己,为减少污染,我们应该养成节约的习惯,节约用水、节约用纸等等。\n\n★ 节约用纸主要是为了:",
"options": [
"A 保护环境",
"B 限制用水",
"C 改变地球",
"D 发展经济"
],
"correct_answer_index": 0,
"explanation": "The passage states the logic directly: 保护环境就是保护我们自己,为减少污染,我们应该养成节约的习惯 — saving paper is listed as one of the 节约 habits whose purpose is 减少污染/保护环境. So saving paper serves environmental protection (A), not water limits or the economy."
},
{
"number": 69,
"original_id": 473,
"type": "reading_comprehension",
"text": "一些电影院拒绝观众带任何食品、饮料,人们不得不买电影院卖的东西。很多观众批评这个做法,因为电影院的东西特别贵,大约比超市贵三倍。\n\n★ 观众对什么不满意?",
"options": [
"A 票价高",
"B 座位少",
"C 东西太贵",
"D 电影不精彩"
],
"correct_answer_index": 2,
"explanation": "The complaint is explicit: 因为电影院的东西特别贵,大约比超市贵三倍 — \"the cinema's food is extremely expensive, about three times the supermarket price\". So viewers are unhappy that 东西太贵 (C). Ticket price (A) is never mentioned — a classic distractor."
},
{
"number": 70,
"original_id": 474,
"type": "reading_comprehension",
"text": "进入21世纪,随着科学技术的发展,人与人的联系越来越方便,上网发电子邮件的人越来越多,写信的人越来越少。\n\n★ 根据这段话,人们更喜欢怎么交流?",
"options": [
"A 寄信",
"B 谈话",
"C 打电话",
"D 写电子邮件"
],
"correct_answer_index": 3,
"explanation": "上网发电子邮件的人越来越多,写信的人越来越少 — \"more and more people send e-mail, fewer and fewer write letters\". The growing trend identifies the preferred method: 写电子邮件 (D). 寄信 (A) is the declining one; phones are not discussed."
},
{
"number": 71,
"original_id": 475,
"type": "reading_comprehension",
"text": "长江是中国也是亚洲最长的河,全长6397公里,它由西向东,流经十几个省市,最后由上海市流入东海。\n\n★ 长江:",
"options": [
"A 世界最长",
"B 是黄色的",
"C 流向东部",
"D 近 1 万公里"
],
"correct_answer_index": 2,
"explanation": "它由西向东 (\"it flows from west to east\") and 最后…流入东海 (\"finally empties into the East China Sea\") give answer C 流向东部. A is wrong because the text says longest in China/Asia, not the world; D is wrong because 6,397 km is far from 10,000 km."
},
{
"number": 72,
"original_id": 476,
"type": "reading_comprehension",
"text": "兴趣是最好的老师,如果孩子对一件事情感兴趣,那他一定会主动、努力地去学习,效果也会更好。\n\n★ 为了提高学习效果,应该让孩子:",
"options": [
"A 积累经验",
"B 努力学习",
"C 产生兴趣",
"D 相信自己"
],
"correct_answer_index": 2,
"explanation": "The passage argues: 如果孩子对一件事情感兴趣…效果也会更好 — interest drives motivated learning and better results. So to improve learning, children should 产生兴趣 (develop interest), answer C. 努力学习 (B) is the consequence of interest in the text, not the starting point."
},
{
"number": 73,
"original_id": 477,
"type": "reading_comprehension",
"text": "有的时候,我们要学会拒绝别人。拒绝别人,要找到合适、礼貌的方法,否则,如果表达不合适,就会引起误会。\n\n★ 这段话主要说怎样:",
"options": [
"A 拒绝别人",
"B 获得尊重",
"C 减少误会",
"D 获得原谅"
],
"correct_answer_index": 0,
"explanation": "The opening line announces the topic: 我们要学会拒绝别人 (\"we must learn to refuse people\"), and the rest explains how to do it politely. So the passage is mainly about 拒绝别人 (A). 减少误会 (C) is mentioned only as the consequence of refusing badly."
},
{
"number": 74,
"original_id": 478,
"type": "reading_comprehension",
"text": "以前,日记是写给自己看的,然而现在更多的年轻人喜欢把自己的日记放到网站上,希望和更多的人交流。\n\n★ 现在许多年轻人写日记:",
"options": [
"A 写得很短",
"B 代替交流",
"C 只在网上写",
"D 允许别人看"
],
"correct_answer_index": 3,
"explanation": "现在更多的年轻人喜欢把自己的日记放到网站上,希望和更多的人交流 — young people post diaries online hoping to share them. Putting a diary where others can read it = 允许别人看 (D). C (只在网上写 \"ONLY write online\") overstates the text — 更多 means \"more\", not \"all\"."
},
{
"number": 75,
"original_id": 479,
"type": "reading_comprehension",
"text": "一个不喜欢开玩笑的人,不一定让人讨厌。但是一个会开玩笑的人,往往让人觉得很可爱。\n\n★ 会开玩笑的人:",
"options": [
"A 更聪明",
"B 很成熟",
"C 让人喜欢",
"D 比较无聊"
],
"correct_answer_index": 2,
"explanation": "The second sentence states it directly: 一个会开玩笑的人,往往让人觉得很可爱 — \"a person who can joke often strikes people as lovable\". 让人觉得可爱 ≈ 让人喜欢 (C). The passage never claims jokers are smarter (A) or more mature (B)."
},
{
"number": 76,
"original_id": 480,