-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtest-06.json
More file actions
1324 lines (1324 loc) · 35.4 KB
/
Copy pathtest-06.json
File metadata and controls
1324 lines (1324 loc) · 35.4 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": 7,
"title": "HSK 4 Online Mock Exam Series 6 Based on HSK41006",
"source": "Mandarin Zone (mandarinzone.com)",
"total_questions": 100,
"questions": [
{
"number": 1,
"original_id": 2034,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-1.mp3",
"text": "1. ★ 妻子减肥很成功。",
"options": [
"对",
"错"
],
"correct_answer_index": 1
},
{
"number": 2,
"original_id": 2033,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-02.wav",
"text": "2. ★ 对朋友要有耐心。",
"options": [
"对",
"错"
],
"correct_answer_index": 1
},
{
"number": 3,
"original_id": 2032,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-03.wav",
"text": "3. ★ 态度改变生活。",
"options": [
"对",
"错"
],
"correct_answer_index": 0
},
{
"number": 4,
"original_id": 2031,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-04.wav",
"text": "4. ★ 笑使人更健康。",
"options": [
"对",
"错"
],
"correct_answer_index": 0
},
{
"number": 5,
"original_id": 2030,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-05.wav",
"text": "5. ★ 妈妈理发的水平不高。",
"options": [
"对",
"错"
],
"correct_answer_index": 0
},
{
"number": 6,
"original_id": 2029,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-06.wav",
"text": "6. ★ 现在的房租很贵。",
"options": [
"对",
"错"
],
"correct_answer_index": 1
},
{
"number": 7,
"original_id": 2028,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-07.wav",
"text": "7. ★ 父母要多表扬孩子。",
"options": [
"对",
"错"
],
"correct_answer_index": 1
},
{
"number": 8,
"original_id": 2027,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-08.wav",
"text": "8. ★ 要忘掉不高兴的事情。",
"options": [
"对",
"错"
],
"correct_answer_index": 0
},
{
"number": 9,
"original_id": 2026,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-09.wav",
"text": "9. ★ 幽默的人很诚实。",
"options": [
"对",
"错"
],
"correct_answer_index": 1
},
{
"number": 10,
"original_id": 2025,
"type": "listening_true_false",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-10.wav",
"text": "10. ★ 成熟不仅仅和年龄有关。",
"options": [
"对",
"错"
],
"correct_answer_index": 0
},
{
"number": 11,
"original_id": 2024,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-12.wav",
"text": "11. 他们觉得马小姐怎么样?",
"options": [
"A 可怜",
"B 负责",
"C 个子矮",
"D 长得年轻"
],
"correct_answer_index": 3
},
{
"number": 12,
"original_id": 2023,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-13.wav",
"text": "12. 他们最可能在哪儿?",
"options": [
"A 宾馆",
"B 教室",
"C 树林中",
"D 大使馆"
],
"correct_answer_index": 2
},
{
"number": 13,
"original_id": 2022,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-14.wav",
"text": "13. 女的主要是什么意思?",
"options": [
"A 很正常",
"B 感谢老师",
"C 感到抱歉",
"D 应该坚持"
],
"correct_answer_index": 3
},
{
"number": 14,
"original_id": 2021,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-15.wav",
"text": "14. 他们在哪儿见面?",
"options": [
"A 公园里",
"B 天桥下",
"C 办公室",
"D 电梯口"
],
"correct_answer_index": 1
},
{
"number": 15,
"original_id": 2020,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-16.wav",
"text": "15. 女的最可能要做什么?",
"options": [
"A 发传真",
"B 复印材料",
"C 写会议总结",
"D 发电子邮件"
],
"correct_answer_index": 3
},
{
"number": 16,
"original_id": 2019,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-17.wav",
"text": "16. 男的主要担心什么?",
"options": [
"A 时间不够",
"B 路上堵车",
"C 顾客太多",
"D 没地方停车"
],
"correct_answer_index": 0
},
{
"number": 17,
"original_id": 2018,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-18.wav",
"text": "17. 女的为什么提前回家?",
"options": [
"A 亲戚结婚",
"B 准备出差",
"C 任务完成了",
"D 身体不舒服"
],
"correct_answer_index": 2
},
{
"number": 18,
"original_id": 2017,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-19.wav",
"text": "18. 根据对话,可以知道什么?",
"options": [
"A 女的感冒了",
"B 女的在请假",
"C 经理不同意",
"D 母亲很辛苦"
],
"correct_answer_index": 1
},
{
"number": 19,
"original_id": 2016,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-20.wav",
"text": "19. 女的让男的做什么?",
"options": [
"A 留地址",
"B 介绍菜单",
"C 留电话号码",
"D 重新填表格"
],
"correct_answer_index": 2
},
{
"number": 20,
"original_id": 2015,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-21.wav",
"text": "20. 女的怎么了?",
"options": [
"A 迟到了",
"B 生气了",
"C 很失望",
"D 还没出发"
],
"correct_answer_index": 0
},
{
"number": 21,
"original_id": 2014,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-22.wav",
"text": "21. 男的最可能在做什么?",
"options": [
"A 招聘",
"B 约会",
"C 上课",
"D 道歉"
],
"correct_answer_index": 0
},
{
"number": 22,
"original_id": 2013,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-23.wav",
"text": "22. 为什么要给儿子准备礼物?",
"options": [
"A 新年到了",
"B 明天儿童节",
"C 手表很便宜",
"D 想鼓励儿子"
],
"correct_answer_index": 1
},
{
"number": 23,
"original_id": 2012,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-24.wav",
"text": "23. 他们到长城还要多长时间?",
"options": [
"A 半小时",
"B 40分钟",
"C 一小时",
"D 一个半小时"
],
"correct_answer_index": 0
},
{
"number": 24,
"original_id": 2011,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-25.wav",
"text": "24. 男的网球打得怎么样?",
"options": [
"A 很厉害",
"B 有提高",
"C 比以前差",
"D 完全不会"
],
"correct_answer_index": 1
},
{
"number": 25,
"original_id": 2010,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-26.wav",
"text": "25. 他们什么时候出发?",
"options": [
"A 上午8点",
"B 上午9点",
"C 中午12点",
"D 下午两点"
],
"correct_answer_index": 3
},
{
"number": 26,
"original_id": 2009,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-28.wav",
"text": "26. 男的最可能是做什么的?",
"options": [
"A 律师",
"B 演员",
"C 大夫",
"D 记者"
],
"correct_answer_index": 1
},
{
"number": 27,
"original_id": 2008,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-29.wav",
"text": "27. 男的对小白的妹妹印象怎么样?",
"options": [
"A 粗心",
"B 可爱",
"C 骄傲",
"D 有礼貌"
],
"correct_answer_index": 3
},
{
"number": 28,
"original_id": 2007,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-30.wav",
"text": "28. 男的为什么希望秋天快点儿来?",
"options": [
"A 凉快",
"B 想爬山",
"C 水果多",
"D 喜欢下雪"
],
"correct_answer_index": 0
},
{
"number": 29,
"original_id": 2006,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-31.wav",
"text": "29. 根据对话,可以知道什么?",
"options": [
"A 男的不着急",
"B 比赛推迟了",
"C 快放暑假了",
"D 报名人数少"
],
"correct_answer_index": 3,
"note": "[Audio missing in source data — original audio file at the same URL as Q28 of this test]"
},
{
"number": 30,
"original_id": 2005,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-32.wav",
"text": "30. 纸箱子里是什么?",
"options": [
"A 巧克力蛋糕",
"B 笔记本电脑",
"C 旧报纸杂志",
"D 现代汉语词典"
],
"correct_answer_index": 2
},
{
"number": 31,
"original_id": 2004,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-33.wav",
"text": "31. 女的刚才去哪儿了?",
"options": [
"A 银行",
"B 饭馆儿",
"C 图书馆",
"D 火车站"
],
"correct_answer_index": 1
},
{
"number": 32,
"original_id": 2003,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-34.wav",
"text": "32. 冰箱怎么了?",
"options": [
"A 太吵",
"B 灯不亮了",
"C 关不上门",
"D 不起作用了"
],
"correct_answer_index": 1
},
{
"number": 33,
"original_id": 2002,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-35.wav",
"text": "33. 男的祝贺女的什么?",
"options": [
"A 要去留学",
"B 演出成功",
"C 考上了博士",
"D 通过了考试"
],
"correct_answer_index": 3
},
{
"number": 34,
"original_id": 2001,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-36.wav",
"text": "34. 根据对话,可以知道什么?",
"options": [
"A 窗户坏了",
"B 沙发太硬",
"C 他们要搬家",
"D 他们在逛街"
],
"correct_answer_index": 2
},
{
"number": 35,
"original_id": 2000,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-37.wav",
"text": "35. 女的希望男的怎么样?",
"options": [
"A 乘坐飞机",
"B 寄信回来",
"C 出国访问",
"D 组织大家旅游"
],
"correct_answer_index": 3
},
{
"number": 36,
"original_id": 1999,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-38.wav",
"text": "36. 吃了苹果后,小孙子觉得怎么样?",
"options": [
"A 很渴",
"B 很饱",
"C 肚子疼",
"D 有些累"
],
"correct_answer_index": 2
},
{
"number": 37,
"original_id": 1998,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-39.wav",
"text": "37. 小孙子为什么喝了很多水?",
"options": [
"A 要洗苹果",
"B 皮肤干燥",
"C 为了出汗",
"D 不想浪费水"
],
"correct_answer_index": 0
},
{
"number": 38,
"original_id": 1997,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-40.wav",
"text": "38. 提前计划有什么好处?",
"options": [
"A 减少麻烦",
"B 增加收入",
"C 提前结束",
"D 得到奖金"
],
"correct_answer_index": 0
},
{
"number": 39,
"original_id": 1996,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-41.wav",
"text": "39. 这段话主要想告诉我们什么?",
"options": [
"A 按时休息",
"B 能力是关键",
"C 做事要主动",
"D 要早做准备"
],
"correct_answer_index": 3
},
{
"number": 40,
"original_id": 1995,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-42.wav",
"text": "40. 甜\"代表什么?",
"options": [
"A 安静",
"B 兴奋激动",
"C 快乐幸福",
"D 竞争的过程"
],
"correct_answer_index": 2
},
{
"number": 41,
"original_id": 1994,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-43.wav",
"text": "41. 这段话主要谈的是什么?",
"options": [
"A 季节",
"B 生活",
"C 市场",
"D 理想"
],
"correct_answer_index": 1
},
{
"number": 42,
"original_id": 1993,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-44.wav",
"text": "42. 人们为什么要考试?",
"options": [
"A 反映问题",
"B 获得机会",
"C 想读研究生",
"D 养成好习惯"
],
"correct_answer_index": 1
},
{
"number": 43,
"original_id": 1992,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-45.wav",
"text": "43. 要看到世界的精彩,需要什么?",
"options": [
"A 友谊",
"B 高级眼镜",
"C 知识和经验",
"D 流利的中文"
],
"correct_answer_index": 2
},
{
"number": 44,
"original_id": 1991,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-46.wav",
"text": "44. 那个人在黑板上画了什么?",
"options": [
"A 圆",
"B 鸡蛋",
"C 葡萄",
"D 眼睛"
],
"correct_answer_index": 0
},
{
"number": 45,
"original_id": 1990,
"type": "listening_choice",
"audio": "https://media.mandarinzone.com/wp-content/uploads/2025/07/hsk41006-47.wav",
"text": "45. 大学生觉得这个问题怎么样?",
"options": [
"A 太简单",
"B 不好解释",
"C 需要讨论",
"D 无正确答案"
],
"correct_answer_index": 0
},
{
"number": 46,
"original_id": 1989,
"type": "fill_in_blank",
"text": "46. 不管出现什么问题,请()与我们联系。",
"options": [
"A 及时",
"B 钥匙",
"C 回忆",
"D 坚持",
"E 适合",
"F 由于"
],
"correct_answer_index": 0
},
{
"number": 47,
"original_id": 1988,
"type": "fill_in_blank",
"text": "47. 这件衣服很()你,而且正在打折,买吧。",
"options": [
"A 及时",
"B 钥匙",
"C 回忆",
"D 坚持",
"E 适合",
"F 由于"
],
"correct_answer_index": 4
},
{
"number": 48,
"original_id": 1987,
"type": "fill_in_blank",
"text": "48. 这些发黄的老照片让那位老奶奶()起很多年轻时候的事。",
"options": [
"A 及时",
"B 钥匙",
"C 回忆",
"D 坚持",
"E 适合",
"F 由于"
],
"correct_answer_index": 2
},
{
"number": 49,
"original_id": 1986,
"type": "fill_in_blank",
"text": "49. ()天气原因,学校推迟了羽毛球比赛时间。",
"options": [
"A 及时",
"B 钥匙",
"C 回忆",
"D 坚持",
"E 适合",
"F 由于"
],
"correct_answer_index": 5
},
{
"number": 50,
"original_id": 1985,
"type": "fill_in_blank",
"text": "50. 你现在到哪儿了?我忘带()了,开不了门。",
"options": [
"A 及时",
"B 钥匙",
"C 回忆",
"D 坚持",
"E 适合",
"F 由于"
],
"correct_answer_index": 1
},
{
"number": 51,
"original_id": 1984,
"type": "fill_in_blank",
"text": "51. A:您是什么时候来北京的? B:2003年,我大学()后就来了。",
"options": [
"A 页",
"B 收拾",
"C 温度",
"D 不过",
"E 毕业",
"F 窄"
],
"correct_answer_index": 4
},
{
"number": 52,
"original_id": 1983,
"type": "fill_in_blank",
"text": "52. A:听说你换工作了,新工作怎么样? B:最近还在找,()不太顺利,还没找到。",
"options": [
"A 页",
"B 收拾",
"C 温度",
"D 不过",
"E 毕业",
"F 窄"
],
"correct_answer_index": 3
},
{
"number": 53,
"original_id": 1982,
"type": "fill_in_blank",
"text": "53. A:前面的路挺()的,你开车小心点儿。 B:放心吧,这条路我经常走,保证没问题。",
"options": [
"A 页",
"B 收拾",
"C 温度",
"D 不过",
"E 毕业",
"F 窄"
],
"correct_answer_index": 5
},
{
"number": 54,
"original_id": 1981,
"type": "fill_in_blank",
"text": "54. A:下班了,一起走?你是坐地铁吧? B:是,稍等我两分钟,我()一下桌子上的东西。",
"options": [
"A 页",
"B 收拾",
"C 温度",
"D 不过",
"E 毕业",
"F 窄"
],
"correct_answer_index": 1
},
{
"number": 55,
"original_id": 1980,
"type": "fill_in_blank",
"text": "55. A:我上次借给你的那本书看完了吗? B:没有呢,这个星期忙着复习、考试,可能也就看了几十()。",
"options": [
"A 页",
"B 收拾",
"C 温度",
"D 不过",
"E 毕业",
"F 窄"
],
"correct_answer_index": 0
},
{
"number": 56,
"original_id": 1979,
"type": "reading_ordering",
"text": "56. 请将下列句子排列成正确顺序:A 不管是内容还是语言都十分理想 B 这篇报道我看了两遍,质量很高 C 打印几份让同事们看看",
"options": [
"A BAC",
"B ABC",
"C BCA",
"D ACB"
],
"correct_answer_index": 0
},
{
"number": 57,
"original_id": 1978,
"type": "reading_ordering",
"text": "57. 请将下列句子排列成正确顺序:A 我们对别人的态度决定别人对我们的态度 B 你笑,镜子里的人也笑;你哭,他也哭 C 这就好像一个人站在镜子前面",
"options": [
"A ACB",
"B CAB",
"C ABC",
"D BAC"
],
"correct_answer_index": 0
},
{
"number": 58,
"original_id": 1977,
"type": "reading_ordering",
"text": "58. 请将下列句子排列成正确顺序:A 这些食品被叫做垃圾食品 B 并且提供的热量往往超过人体的需要 C 一些食品只为人体提供热量",
"options": [
"A CBA",
"B ABC",
"C ACB",
"D BAC"
],
"correct_answer_index": 0
},
{
"number": 59,
"original_id": 1976,
"type": "reading_ordering",
"text": "59. 请将下列句子排列成正确顺序:A 但随着经验的增多,他们会变得越来越有信心 B 都会感到紧张和害羞 C 许多人第一次上台表演的时候",
"options": [
"A CBA",
"B ABC",
"C CAB",
"D BAC"
],
"correct_answer_index": 0
},
{
"number": 60,
"original_id": 1975,
"type": "reading_ordering",
"text": "60. 请将下列句子排列成正确顺序:A 根据当地法律规定 B 不可以申请使用信用卡 C 不满18岁的人",
"options": [
"A ACB",
"B CAB",
"C ABC",
"D BCA"
],
"correct_answer_index": 0
},
{
"number": 61,
"original_id": 1974,
"type": "reading_ordering",
"text": "61. 请将下列句子排列成正确顺序:A 一定要允许其他人有反对意见 B 一个合格的公司管理者 C 甚至表达自己的不满",
"options": [
"A BAC",
"B ABC",
"C BCA",
"D CAB"
],
"correct_answer_index": 0
},
{
"number": 62,
"original_id": 1973,
"type": "reading_ordering",
"text": "62. 请将下列句子排列成正确顺序:A 最好先弄清楚究竟是怎么回事 B 生气多是由误会引起的 C 因此当你觉得自己要生气的时候",
"options": [
"A BCA",
"B ABC",
"C CAB",
"D ACB"
],
"correct_answer_index": 0
},
{
"number": 63,
"original_id": 1972,
"type": "reading_ordering",
"text": "63. 请将下列句子排列成正确顺序:A 那它就是正确的 B 只要大多数人都这么说 C 有时候,一个句子不管多么不符合语法",
"options": [
"A CBA",
"B ABC",
"C BCA",
"D CAB"
],
"correct_answer_index": 0
},
{
"number": 64,
"original_id": 1971,
"type": "reading_ordering",
"text": "64. 请将下列句子排列成正确顺序:A 参加了那么多场国际比赛,你紧张吗 B 中国著名运动员邓亚萍的回答是 C 想赢就不会紧张,怕输才紧张",
"options": [
"A ABC",
"B BAC",
"C CBA",
"D ACB"
],
"correct_answer_index": 0
},
{
"number": 65,
"original_id": 1970,
"type": "reading_ordering",
"text": "65. 请将下列句子排列成正确顺序:A 艺术对我们的生活非常重要 B 让我们的精神世界变得更丰富 C 它为我们的生活增加了许多浪漫的感觉",
"options": [
"A ACB",
"B ABC",
"C CAB",
"D BAC"
],
"correct_answer_index": 0
},
{
"number": 66,
"original_id": 1969,
"type": "reading_comprehension",
"text": "66. 根据这段话,赛车:",
"options": [
"A 很流行",
"B 十分危险",
"C 特别有趣",
"D 比较轻松"
],
"correct_answer_index": 1
},
{
"number": 67,
"original_id": 1968,
"type": "reading_comprehension",
"text": "67. 这段话主要讲什么?",
"options": [
"A 我的爱好",
"B 什么是烦恼",
"C 烦恼时怎么办",
"D 为什么会烦恼"
],
"correct_answer_index": 2
},
{
"number": 68,
"original_id": 1967,
"type": "reading_comprehension",
"text": "68. 作者认为广告:",
"options": [
"A 太多了",
"B 内容无聊",
"C 很受欢迎",
"D 范围要扩大"
],
"correct_answer_index": 0
},
{
"number": 69,
"original_id": 1966,
"type": "reading_comprehension",
"text": "69. 成功的人:",
"options": [
"A 爱加班",
"B 脾气好",
"C 不怕失败",
"D 遇事不冷静"
],
"correct_answer_index": 2
},
{
"number": 70,
"original_id": 1965,
"type": "reading_comprehension",
"text": "70. 他在弹钢琴方面:",
"options": [
"A 很笨",
"B 很优秀",
"C 很一般",
"D 很马虎"
],
"correct_answer_index": 1
},
{
"number": 71,
"original_id": 1964,
"type": "reading_comprehension",
"text": "71. 心与心之间的距离,主要和什么有关?",
"options": [
"A 感情",
"B 性别",
"C 职业",
"D 文化"
],
"correct_answer_index": 0
},
{
"number": 72,
"original_id": 1963,
"type": "reading_comprehension",
"text": "72. 怎样才能更快地适应新环境?",
"options": [
"A 多购物",
"B 少抽烟",
"C 跟人聊天",
"D 与人做生意"
],
"correct_answer_index": 2
},
{
"number": 73,
"original_id": 1962,
"type": "reading_comprehension",
"text": "73. 狮子有什么特点?",
"options": [
"A 很懒",
"B 很脏",
"C 很快乐",
"D 很孤单"
],
"correct_answer_index": 2