content-qa.ts
42.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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
import { Injectable } from '@angular/core';
import { Qa } from './define-qa';
/*
Generated class for the DataService provider.
See https://angular.io/docs/ts/latest/guide/dependency-injection.html
for more info on providers and Angular 2 DI.
*/
@Injectable()
export class ContentsQa {
qa :Qa[];
constructor() {
this.qa = this.createQa();
}
private createQa(): Qa[] {
var qa = [{
menuId: 0,
unitId: 0,
qaId: 0,
questionString: '光が、鏡で反射するとき、入射角と反射角の大きさは{ ? }',
questionImage: '',
choicesId: [0,1,2],
choicesString: [ '反射角が大きい','入射角が大きい','等しい'],
answerId: 2,
answerString: '等しい',
answerImage: 'a000000.png'
}, {
menuId: 0,
unitId: 0,
qaId: 1,
questionString: '図で、反射角は{ ? }である',
questionImage: 'q000001.png',
choicesId: [0, 1, 2],
choicesString: ['ア', 'イ', 'ウ'],
answerId: 2,
answerString: 'ウ',
answerImage: ''
}, {
menuId: 0,
unitId: 1,
qaId: 0,
questionString: '光が、空気中から水中に進むとき、屈折角は入射角に比べて{ ? }',
questionImage: '',
choicesId: [0, 1],
choicesString: ['大きい', '小さい'],
answerId: 1,
answerString: '小さい',
answerImage: 'a000100.png'
}, {
menuId: 0,
unitId: 1,
qaId: 1,
questionString: '光の入射角がある角度以上大きくなると、光はすべて反射してしまう。この現象を{ ? }という',
questionImage: '',
choicesId: [0, 1, 2],
choicesString: ['全反射', '拡散反射', '屈折'],
answerId: 0,
answerString: '全反射',
answerImage: ''
}, {
menuId: 0,
unitId: 2,
qaId: 0,
questionString: '凸レンズの軸に平行な光は、レンズを通過後{ ? }を通る',
questionImage: '',
choicesId: [0, 1, 2],
choicesString: ['周辺部', '焦点', '上端'],
answerId: 1,
answerString: '焦点',
answerImage: 'a000200.png'
}, {
menuId: 0,
unitId: 2,
qaId: 1,
questionString: '物体が焦点の外側にあるとき、できる像は{ ? }の{ ? }である',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['正立、実像', '正立、虚像', '倒立、実像', '倒立、虚像'],
answerId: 2,
answerString: '倒立、実像',
answerImage: ''
}, {
menuId: 0,
unitId: 2,
qaId: 2,
questionString: '物体が焦点の内側にあるとき見える像は{ ? }である',
questionImage: '',
choicesId: [0, 1],
choicesString: ['実像', '虚像'],
answerId: 1,
answerString: '虚像',
answerImage: ''
}, {
menuId: 0,
unitId: 3,
qaId: 0,
questionString: '振幅が大きいほど音は{ ? }',
questionImage: '',
choicesId: [0, 1],
choicesString: ['小さい', '大きい'],
answerId: 1,
answerString: '大きい',
answerImage: 'a000300.png'
}, {
menuId: 0,
unitId: 3,
qaId: 1,
questionString: '打ち上げ花火が見えてから 3 秒後に音が聞こえた。花火までの距離は約{ ? }m である。なお、音の速さは 340 m/秒とする',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['920', '340', '110', '1020'],
answerId: 3,
answerString: '1020',
answerImage: ''
}, {
menuId: 0,
unitId: 4,
qaId: 0,
questionString: '1kg の物体にはたらく重力の大きさは{ ? }N',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['1', '10', '100', '1000'],
answerId: 1,
answerString: '10',
answerImage: ''
}, {
menuId: 0,
unitId: 4,
qaId: 1,
questionString: 'ニュートンばかりは、ばねの{ ? }を利用して力の大きさを調べるはかり',
questionImage: '',
choicesId: [0, 1],
choicesString: ['長さ', 'のび'],
answerId: 1,
answerString: 'のび',
answerImage: ''
}, {
menuId: 0,
unitId: 5,
qaId: 0,
questionString: '2㎡ の面を 8N の力で垂直に押したときの面にはたらく圧力は{ ? }Pa',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['4', '8', '2', '16'],
answerId: 0,
answerString: '4',
answerImage: 'a000500.png'
}, {
menuId: 0,
unitId: 5,
qaId: 1,
questionString: '水圧は水中の物体に対して{ ? }向きにはたらく',
questionImage: '',
choicesId: [0, 1],
choicesString: ['下', 'あらゆる'],
answerId: 1,
answerString: 'あらゆる',
answerImage: ''
}, {
menuId: 0,
unitId: 5,
qaId: 2,
questionString: '図で、物体にはたらく浮力の大きさは{ ? }N',
questionImage: 'q000502.png',
choicesId: [0, 1, 2, 3],
choicesString: ['2', '0.1', '0.2', '0.8'],
answerId: 2,
answerString: '0.2',
answerImage: ''
}, {
menuId: 1,
unitId: 0,
qaId: 0,
questionString: '砂糖は{ ? }物、食塩は{ ? }物',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['無機、無機', '無機、有機', '有機、有機', '有機、無機'],
answerId: 3,
answerString: '有機、無機',
answerImage: 'a010000.png'
}, {
menuId: 1,
unitId: 0,
qaId: 1,
questionString: 'プラスチックは{ ? }て、加工がしやすい',
questionImage: '',
choicesId: [0, 1],
choicesString: ['軽く', '重く'],
answerId: 0,
answerString: '軽く',
answerImage: ''
}, {
menuId: 1,
unitId: 0,
qaId: 2,
questionString: '金属は、熱や{ ? }をよく通し、光沢が{ ? }',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['電気、ある', '光、ある', '電気、ない', '光、ない'],
answerId: 0,
answerString: '電気、ある',
answerImage: ''
}, {
menuId: 1,
unitId: 1,
qaId: 0,
questionString: '物質の状態は{ ? }で変化する',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['水', '電気', '湿度', '温度'],
answerId: 3,
answerString: '温度',
answerImage: 'a010100.png'
}, {
menuId: 1,
unitId: 1,
qaId: 1,
questionString: '物質の状態変化で変化するのは{ ? }である',
questionImage: '',
choicesId: [0, 1],
choicesString: ['体積', '質量'],
answerId: 0,
answerString: '体積',
answerImage: ''
}, {
menuId: 1,
unitId: 2,
qaId: 0,
questionString: '表の気体で、燃える気体は{ ? }で、ほかの物質を燃やす気体は{ ? }である',
questionImage: 'q010200.png',
choicesId: [0, 1, 2, 3],
choicesString: ['水素、酸素', '二酸化炭素、水素', '酸素、水素', 'アンモニア、酸素'],
answerId: 0,
answerString: '水素、酸素',
answerImage: ''
}, {
menuId: 1,
unitId: 2,
qaId: 1,
questionString: '亜鉛に塩酸を注ぐと、{ ? }が発生する',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['二酸化炭素', '水素', '酸素', '窒素'],
answerId: 1,
answerString: '水素',
answerImage: ''
}, {
menuId: 1,
unitId: 2,
qaId: 2,
questionString: '図のような気体の集め方を{ ? }(法)といい、{ ? }を集める時に使う。',
questionImage: 'q010202.png',
choicesId: [0, 1, 2, 3],
choicesString: ['下方置換、アンモニア', '下方置換、水素', '上方置換、アンモニア', '上方置換、酸素'],
answerId: 2,
answerString: '上方置換、アンモニア',
answerImage: ''
}, {
menuId: 1,
unitId: 3,
qaId: 0,
questionString: '図で、A のときの温度を水の{ ? }という',
questionImage: 'q010300.png',
choicesId: [0, 1],
choicesString: ['融点', '沸点'],
answerId: 0,
answerString: '融点',
answerImage: ''
}, {
menuId: 1,
unitId: 3,
qaId: 1,
questionString: '融点や沸点が一定の値を示さないのは、{ ? }である',
questionImage: '',
choicesId: [0, 1],
choicesString: ['純粋な物質', '混合物'],
answerId: 1,
answerString: '混合物',
answerImage: 'a010301.png'
}, {
menuId: 1,
unitId: 3,
qaId: 2,
questionString: '食塩水を蒸留して得られた水は{ ? }物質',
questionImage: '',
choicesId: [0, 1, 2],
choicesString: ['純粋な', '混合', '水溶性'],
answerId: 0,
answerString: '純粋な',
answerImage: ''
}, {
menuId: 1,
unitId: 3,
qaId: 3,
questionString: '蒸留で最初に出てくるのは沸点の{ ? }物質',
questionImage: '',
choicesId: [0, 1],
choicesString: ['高い', '低い'],
answerId: 1,
answerString: '低い',
answerImage: ''
}, {
menuId: 1,
unitId: 4,
qaId: 0,
questionString: '食塩水のこさは、どこをとっても{ ? }',
questionImage: '',
choicesId: [0, 1],
choicesString: ['ばらつきがある', '均一である'],
answerId: 1,
answerString: '均一である',
answerImage: ''
}, {
menuId: 1,
unitId: 4,
qaId: 1,
questionString: 'ろ過で、液体から個体をこし分けるには{ ? }を使う',
questionImage: '',
choicesId: [0, 1, 2],
choicesString: ['塩化コバルト紙', 'リトマス紙', 'ろ紙'],
answerId: 2,
answerString: 'ろ紙',
answerImage: ''
}, {
menuId: 1,
unitId: 5,
qaId: 0,
questionString: '水 100g に、砂糖 25g を加えてよくかき混ぜ、完全にとかしてできた砂糖水の濃度は{ ? }%',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['75', '25', '12', '20'],
answerId: 3,
answerString: '20',
answerImage: 'a010500.png'
}, {
menuId: 1,
unitId: 6,
qaId: 0,
questionString: '60℃のホウ酸の飽和水溶液を冷やすと、ホウ酸が結晶として出てくる。このような操作を{ ? }という',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['状態変化', '電解', '再結晶', '蒸留'],
answerId: 2,
answerString: '再結晶',
answerImage: ''
}, {
menuId: 1,
unitId: 6,
qaId: 1,
questionString: '60℃ の食塩水から食塩を結晶して取り出すには、食塩水を{ ? }方法がよい',
questionImage: '',
choicesId: [0, 1],
choicesString: ['冷やす', '加熱して水を蒸発させる'],
answerId: 1,
answerString: '加熱して水を蒸発させる',
answerImage: ''
}, {
menuId: 2,
unitId: 0,
qaId: 0,
questionString: '図の回路は{ ? }回路で、電流の通り道は枝分かれ{ ? }',
questionImage: 'q020000.png',
choicesId: [0, 1, 2, 3],
choicesString: ['直列、している', '並列、している', '直列、していない', '並列、していない'],
answerId: 2,
answerString: '直列、していない',
answerImage: 'a020000.png'
}, {
menuId: 2,
unitId: 1,
qaId: 0,
questionString: '図で、P を流れる電流は{ ? }A、電源の電圧の大きさは{ ? }V である',
questionImage: 'q020100.png',
choicesId: [0, 1, 2, 3],
choicesString: ['5、5', '5、10', '10、10', '10、20'],
answerId: 1,
answerString: '5、10',
answerImage: 'a020100.png'
}, {
menuId: 2,
unitId: 2,
qaId: 0,
questionString: '図の Q 点を流れる電流は{ ? }A、抵抗 P に加わる電圧は{ ? }V',
questionImage: 'q020200.png',
choicesId: [0, 1, 2, 3],
choicesString: ['5、5', '10、5', '10、6', '6、10'],
answerId: 2,
answerString: '10、6',
answerImage: 'a020200.png'
}, {
menuId: 2,
unitId: 3,
qaId: 0,
questionString: 'ある電熱線に 2V の電圧を加えると 0.2A の電流が流れた。この電熱線の抵抗の大きさは{ ? }Ω',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['0.1', '0.5', '2', '10'],
answerId: 3,
answerString: '10',
answerImage: 'a020300.png'
}, {
menuId: 2,
unitId: 4,
qaId: 0,
questionString: '図の回路の全体の抵抗は{ ? }Ω',
questionImage: 'q020400.png',
choicesId: [0, 1, 2, 3],
choicesString: ['30', '20', '12', '10'],
answerId: 0,
answerString: '30',
answerImage: 'a020400.png'
}, {
menuId: 2,
unitId: 5,
qaId: 0,
questionString: '電圧と電流の積で表す量を{ ? }という',
questionImage: '',
choicesId: [0, 1, 2],
choicesString: ['電源', '電力', '抵抗'],
answerId: 1,
answerString: '電力',
answerImage: 'a020500.png'
}, {
menuId: 2,
unitId: 5,
qaId: 1,
questionString: '2W の電力を 2 時間使った時の電力量は{ ? }Wh',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['1', '2', '3', '4'],
answerId: 3,
answerString: '4',
answerImage: ''
}, {
menuId: 2,
unitId: 5,
qaId: 2,
questionString: '図のような装置で発熱量を調べると、発熱量は電力に{ ? }することがわかる',
questionImage: 'q020502.png',
choicesId: [0, 1],
choicesString: ['比例', '反比例'],
answerId: 0,
answerString: '比例',
answerImage: ''
}, {
menuId: 2,
unitId: 6,
qaId: 0,
questionString: '異種の静電気をもつ物質どうしを近づけると{ ? }合う',
questionImage: '',
choicesId: [0, 1],
choicesString: ['反発し', '引き'],
answerId: 1,
answerString: '引き',
answerImage: ''
}, {
menuId: 2,
unitId: 6,
qaId: 1,
questionString: '電流の流れる向きは、{ ? }極 =>{ ? }極',
questionImage: '',
choicesId: [0, 1],
choicesString: ['+、-', '-、+'],
answerId: 0,
answerString: '+、-',
answerImage: ''
}, {
menuId: 3,
unitId: 0,
qaId: 0,
questionString: '磁石と磁石の間にはたらく力を{ ? }といい、N 極どうしや S 極どうしの間には{ ? }合う力がはたらく',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['磁力、引き', '磁力、反発し', '交流、引き', '交流、反発し'],
answerId: 1,
answerString: '磁力、反発し',
answerImage: ''
}, {
menuId: 3,
unitId: 0,
qaId: 1,
questionString: '磁針の N 極がさす向きを{ ? }の向きという',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['力', '磁石', '電流', '磁界'],
answerId: 3,
answerString: '磁界',
answerImage: ''
}, {
menuId: 3,
unitId: 1,
qaId: 0,
questionString: '導線のまわりの磁界は、電流を中心に{ ? }にできる',
questionImage: '',
choicesId: [0, 1],
choicesString: ['同心円状', '放射線状'],
answerId: 0,
answerString: '同心円状',
answerImage: 'a030100.png'
}, {
menuId: 3,
unitId: 1,
qaId: 1,
questionString: '図で導線に矢印の向きに電流を流したとき、できる磁界の向きは{ ? }である',
questionImage: 'q030101.png',
choicesId: [0, 1],
choicesString: ['ア', 'イ'],
answerId: 1,
answerString: 'イ',
answerImage: ''
}, {
menuId: 3,
unitId: 2,
qaId: 0,
questionString: 'コイルの内側の磁界の向きを求める時は、右手の4本の指先を、{ ? }の向きに合わせる',
questionImage: '',
choicesId: [0, 1],
choicesString: ['磁界', '電流'],
answerId: 1,
answerString: '電流',
answerImage: ''
}, {
menuId: 3,
unitId: 2,
qaId: 1,
questionString: 'コイルのまわりの磁界の向きは内側と外側で{ ? }になる',
questionImage: '',
choicesId: [0, 1],
choicesString: ['逆', '同じ'],
answerId: 0,
answerString: '逆',
answerImage: 'a030201.png'
}, {
menuId: 3,
unitId: 3,
qaId: 0,
questionString: '電流が磁界から受ける力、磁界、電流の3つの向きは、互いに{ ? }になる',
questionImage: '',
choicesId: [0, 1],
choicesString: ['水平', '垂直'],
answerId: 1,
answerString: '垂直',
answerImage: 'a030300.png'
}, {
menuId: 3,
unitId: 3,
qaId: 1,
questionString: '図のようなとき、同線のふれる向きは{ ? }である',
questionImage: 'q030301.png',
choicesId: [0, 1, 2, 3],
choicesString: ['ア', 'イ', 'ウ', 'エ'],
answerId: 0,
answerString: 'ア',
answerImage: ''
}, {
menuId: 3,
unitId: 4,
qaId: 0,
questionString: '図のように、コイルの上で棒磁石をを上下させたら、コイルに{ ? }が生じ、{ ? }電流が流れた。この現象を{ ? }という',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['電圧、磁界、電磁誘導', '電圧、誘導、電磁誘導', 'N極、磁界、発光ダイオード', '磁力、誘導、磁界の変化'],
answerId: 1,
answerString: '電圧、誘導、電磁誘導',
answerImage: 'a030400.png'
}, {
menuId: 3,
unitId: 4,
qaId: 1,
questionString: '図で、棒磁石を下げたときと、上げたときでは、コイルに流れる電流の向きは{ ? }である。'
+ '<br />また、下げたり上げたりする速さを速くすると、コイルに流れる電流は{ ? }なる',
questionImage: 'q030401.png',
choicesId: [0, 1, 2, 3],
choicesString: ['同じ向き、強く', '逆向き、弱く', '同じ向き、弱く', '逆向き、強く'],
answerId: 3,
answerString: '逆向き、強く',
answerImage: 'a030401.png'
}, {
menuId: 3,
unitId: 5,
qaId: 0,
questionString: '乾電池による電流は{ ? }',
questionImage: '',
choicesId: [0, 1],
choicesString: ['直流', '交流'],
answerId: 0,
answerString: '直流',
answerImage: ''
}, {
menuId: 3,
unitId: 5,
qaId: 1,
questionString: '家庭に届く、電線を流れる電流は{ ? }',
questionImage: '',
choicesId: [0, 1],
choicesString: ['直流', '交流'],
answerId: 1,
answerString: '交流',
answerImage: ''
}, {
menuId: 3,
unitId: 5,
qaId: 2,
questionString: 'オシロスコープで調べたときに波形の線に見えるのは{ ? }',
questionImage: '',
choicesId: [0, 1],
choicesString: ['直流', '交流'],
answerId: 1,
answerString: '交流',
answerImage: 'a030502.png'
}, {
menuId: 4,
unitId: 0,
qaId: 0,
questionString: '物質が別の 2 種類以上の物質に分かれる化学変化を{ ? }という',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['酸化', '化合', '分解', '分離'],
answerId: 2,
answerString: '分解',
answerImage: 'a040000.png'
}, {
menuId: 4,
unitId: 0,
qaId: 1,
questionString: '炭酸水素ナトリウムの分解で生じる固体は{ ? }',
questionImage: '',
choicesId: [0, 1, 2],
choicesString: ['炭素', '水素', '炭酸ナトリウム'],
answerId: 2,
answerString: '炭酸ナトリウム',
answerImage: ''
}, {
menuId: 4,
unitId: 0,
qaId: 2,
questionString: '炭酸水素ナトリウムの分解で生じる物質のうち、石灰水を白くにごらせるのは{ ? }である',
questionImage: '',
choicesId: [0, 1, 2],
choicesString: ['二酸化炭素', '水素', '炭酸ナトリウム'],
answerId: 0,
answerString: '二酸化炭素',
answerImage: ''
}, {
menuId: 4,
unitId: 0,
qaId: 3,
questionString: '酸化銀を加熱して分解すると、個体の{ ? }と気体の{ ? }が生じ、固体をスプーンの底でこすると{ ? }を示す',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['銀、二酸化炭素、金属光沢', '鉄、酸素、金属光沢', '銀、酸素、金属光沢', '鉄、水素、化学反応'],
answerId: 2,
answerString: '銀、酸素、金属光沢',
answerImage: ''
}, {
menuId: 4,
unitId: 1,
qaId: 0,
questionString: '電流を流して物質を分解することを{ ? }という',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['電気分解', '酸化', '還元', '中和'],
answerId: 0,
answerString: '電気分解',
answerImage: ''
}, {
menuId: 4,
unitId: 1,
qaId: 1,
questionString: '水に少量の水酸化ナトリウムを加えて電流を流すと、陽極には{ ? }、陰極には{ ? }が発生する',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['酸素、水素', '二酸化炭素、酸素', '水素、酸素', '水素、二酸化炭素'],
answerId: 0,
answerString: '酸素、水素',
answerImage: 'a040101.png'
}, {
menuId: 4,
unitId: 1,
qaId: 2,
questionString: '水の分解で発生する水素と酸素の体積比は{ ? }',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['1:4', '1:2', '3:1', '2:1'],
answerId: 3,
answerString: '2:1',
answerImage: ''
}, {
menuId: 4,
unitId: 1,
qaId: 3,
questionString: '水の分解で発生した気体で、火を近づけるとポッと音を立てて燃えるのは{ ? }から発生した気体である',
questionImage: '',
choicesId: [0, 1],
choicesString: ['陽極', '陰極'],
answerId: 1,
answerString: '陰極',
answerImage: ''
}, {
menuId: 4,
unitId: 2,
qaId: 0,
questionString: '原子は、種類によって質量や大きさが{ ? }いて、ほかの種類の原子に変わったり、なくなったり{ ? }',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['異なって、しない', '決まって、しない', '異なって、する', '決まって、する'],
answerId: 1,
answerString: '決まって、しない',
answerImage: ''
}, {
menuId: 4,
unitId: 2,
qaId: 1,
questionString: '原子の記号で、C は{ ? }、Fe は{ ? }を表す',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['炭素、銅', '酸素、鉄', '炭素、ナトリウム', '炭素、鉄'],
answerId: 3,
answerString: '炭素、鉄',
answerImage: ''
}, {
menuId: 4,
unitId: 3,
qaId: 0,
questionString: '鉄と硫黄の混合物を加熱すると{ ? }ができる。このような化学変化を{ ? }という',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['酸化鉄、化合', '酸化鉄、酸化', '硫化鉄、化合', '硫化鉄、酸化'],
answerId: 2,
answerString: '硫化鉄、化合',
answerImage: 'a040300.png'
}, {
menuId: 4,
unitId: 3,
qaId: 1,
questionString: '酸素の化学式は{ ? }、二酸化炭素の化学式は{ ? }',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['O₂、CO₂', 'CO₂、O₂', 'O、CO', 'O₂、CO'],
answerId: 0,
answerString: 'O₂、CO₂',
answerImage: ''
}, {
menuId: 4,
unitId: 4,
qaId: 0,
questionString: '化学反応式では、両辺の原子の種類と数は{ ? }',
questionImage: '',
choicesId: [0, 1, 2],
choicesString: ['等しいとは限らない', '等しい', '異なる'],
answerId: 1,
answerString: '等しい',
answerImage: 'a040400.png'
}, {
menuId: 4,
unitId: 4,
qaId: 1,
questionString: '銅の酸化を化学反応式で表すと、2Cu + { ? }→{ ? }',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['O₂、CuO₂', 'O₂、CuO', '2O₂、2CuO', 'O₂、2CuO'],
answerId: 3,
answerString: 'O₂、2CuO',
answerImage: ''
}, {
menuId: 4,
unitId: 4,
qaId: 2,
questionString: '酸化銀の分解の化学反応式は{ ? }',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['2Ag₂O → 4Ag + O₂', '2Au₂O → 4Au + O₂', 'Ag₂O → 2Ag + O', '2AgO → 2Ag + O₂'],
answerId: 0,
answerString: '2Ag₂O → 4Ag + O₂',
answerImage: ''
}, {
menuId: 5,
unitId: 0,
qaId: 0,
questionString: '物質が酸素と化合する反応を{ ? }という',
questionImage: '',
choicesId: [0, 1, 2],
choicesString: ['還元', '酸化', '吸熱'],
answerId: 1,
answerString: '酸化',
answerImage: ''
}, {
menuId: 5,
unitId: 0,
qaId: 1,
questionString: '鉄が酸化してできる物質は{ ? }',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['二酸化炭素', '硫化鉄', '酸化銅', '酸化鉄'],
answerId: 3,
answerString: '酸化鉄',
answerImage: ''
}, {
menuId: 5,
unitId: 1,
qaId: 0,
questionString: '酸化物から酸素を取り除く反応を{ ? }という',
questionImage: '',
choicesId: [0, 1, 2],
choicesString: ['還元', '酸化', '吸熱'],
answerId: 0,
answerString: '還元',
answerImage: ''
}, {
menuId: 5,
unitId: 1,
qaId: 1,
questionString: '酸化銅の還元では、酸化銅 + 炭素 → 銅 +{ ? }',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['酸素', '二酸化炭素', 'ナトリウム', '水素'],
answerId: 1,
answerString: '二酸化炭素',
answerImage: ''
}, {
menuId: 5,
unitId: 2,
qaId: 0,
questionString: '図のように、物質が自由に出入りできる反応の場合、反応の前後で質量がちがってくる。'
+'<br />反応後の質量が反応前より大きくなるのは{ ? }反応である',
questionImage: 'q050200.png',
choicesId: [0, 1],
choicesString: ['沈殿ができる', '金属を加熱する'],
answerId: 1,
answerString: '金属を加熱する',
answerImage: 'a050200.png'
}, {
menuId: 5,
unitId: 2,
qaId: 1,
questionString: '図のように、密閉した容器の中でうすい塩酸と石灰石を反応させたとき、反応の前後で質量の総和は{ ? }',
questionImage: 'q050201.png',
choicesId: [0, 1],
choicesString: ['変化する', '変化しない'],
answerId: 1,
answerString: '変化しない',
answerImage: ''
}, {
menuId: 5,
unitId: 3,
qaId: 0,
questionString: '鉄 7g と硫黄 4g が完全に化合すると、硫化鉄は{ ? }g できる',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['3', '7', '11', '10'],
answerId: 2,
answerString: '11',
answerImage: ''
}, {
menuId: 5,
unitId: 4,
qaId: 0,
questionString: '銅が酸化されて酸化銅になったとき、増えた質量は化合した{ ? }の分の質量',
questionImage: '',
choicesId: [0, 1, 2],
choicesString: ['酸素', '銅', '二酸化炭素'],
answerId: 0,
answerString: '酸素',
answerImage: ''
}, {
menuId: 5,
unitId: 5,
qaId: 0,
questionString: 'グラフで、銅と酸化銅の質量の比は{ ? }',
questionImage: 'q050500.png',
choicesId: [0, 1, 2, 3],
choicesString: ['1:4', '1:5', '4:5', '3:4'],
answerId: 2,
answerString: '4:5',
answerImage: ''
}, {
menuId: 5,
unitId: 5,
qaId: 1,
questionString: 'グラフで、マグネシウムと化合した酸素の質量の比は{ ? }',
questionImage: 'q050501.png',
choicesId: [0, 1, 2, 3],
choicesString: ['3:2', '5:2', '5:3', '3:5'],
answerId: 0,
answerString: '3:2',
answerImage: ''
}, {
menuId: 5,
unitId: 6,
qaId: 0,
questionString: '水酸化バリウムに塩化アンモニウムを加えると{ ? }反応が起こる',
questionImage: '',
choicesId: [0, 1],
choicesString: ['発熱', '吸熱'],
answerId: 1,
answerString: '吸熱',
answerImage: ''
}, {
menuId: 6,
unitId: 0,
qaId: 0,
questionString: 'タンポポは日当たりの{ ? }ところにはえていて、図のアを{ ? }という',
questionImage: 'q060000.png',
choicesId: [0, 1, 2, 3],
choicesString: ['よい、根', '悪い、がく', 'よい、がく', '悪い、葉'],
answerId: 2,
answerString: 'よい、がく',
answerImage: ''
}, {
menuId: 6,
unitId: 1,
qaId: 0,
questionString: 'ミジンコは動物で、ミカヅキモは{ ? }である',
questionImage: '',
choicesId: [0, 1],
choicesString: ['動物', '植物'],
answerId: 1,
answerString: '植物',
answerImage: 'a060100.png'
}, {
menuId: 6,
unitId: 1,
qaId: 1,
questionString: 'レンズで先にとりつけるのは{ ? }レンズである',
questionImage: '',
choicesId: [0, 1],
choicesString: ['接眼', '対物'],
answerId: 0,
answerString: '接眼',
answerImage: ''
}, {
menuId: 6,
unitId: 1,
qaId: 2,
questionString: '接眼レンズが 10×、対物レンズが 15 のときの倍率は{ ? }',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['10 倍', '15 倍', '150 倍', '200 倍'],
answerId: 2,
answerString: '150 倍',
answerImage: 'a060102.png'
}, {
menuId: 6,
unitId: 2,
qaId: 0,
questionString: 'ふつう花の中央に{ ? }があり、まわりにおしべがある',
questionImage: '',
choicesId: [0, 1, 2],
choicesString: ['めしべ', '花弁', 'がく'],
answerId: 0,
answerString: 'めしべ',
answerImage: ''
}, {
menuId: 6,
unitId: 2,
qaId: 1,
questionString: '子房がなく胚珠がむき出しなのは{ ? }植物である',
questionImage: '',
choicesId: [0, 1],
choicesString: ['被子', '裸子'],
answerId: 1,
answerString: '裸子',
answerImage: 'a060201.png'
}, {
menuId: 6,
unitId: 2,
qaId: 2,
questionString: '被子植物が受粉すると、やがて子房が{ ? }、胚珠が{ ? }になる',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['果実、がく', '果実、種子', '種子、果実', 'がく、種子'],
answerId: 1,
answerString: '果実、種子',
answerImage: ''
}, {
menuId: 6,
unitId: 3,
qaId: 0,
questionString: 'ひげ根があるのは{ ? }葉類',
questionImage: '',
choicesId: [0, 1],
choicesString: ['単子', '双子'],
answerId: 0,
answerString: '単子',
answerImage: 'a060300.png'
}, {
menuId: 6,
unitId: 3,
qaId: 1,
questionString: '蒸散量の調節は{ ? }の開閉で行われる',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['維管束', '孔辺細胞', '葉緑体', '気孔'],
answerId: 3,
answerString: '気孔',
answerImage: 'a060301.png'
}, {
menuId: 6,
unitId: 3,
qaId: 2,
questionString: '気孔はふつう葉の{ ? }に多い',
questionImage: '',
choicesId: [0, 1],
choicesString: ['裏', '表'],
answerId: 0,
answerString: '裏',
answerImage: ''
}, {
menuId: 6,
unitId: 3,
qaId: 3,
questionString: '図で道管は{ ? }である',
questionImage: 'q060303.png',
choicesId: [0, 1, 2],
choicesString: ['ア', 'イ', 'ウ'],
answerId: 0,
answerString: 'ア',
answerImage: ''
}, {
menuId: 6,
unitId: 4,
qaId: 0,
questionString: '植物が日光を受けて、デンプンなどの栄養分をつくるはたらきを{ ? }といい、{ ? }もつくられる',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['光合成、二酸化炭素', '光合成、酸素', '呼吸、酸素', '呼吸、二酸化炭素'],
answerId: 1,
answerString: '光合成、酸素',
answerImage: ''
}, {
menuId: 6,
unitId: 4,
qaId: 1,
questionString: '光合成を行うときの原料は、水と{ ? }である',
questionImage: '',
choicesId: [0, 1],
choicesString: ['二酸化炭素', '酸素'],
answerId: 0,
answerString: '二酸化炭素',
answerImage: ''
}, {
menuId: 6,
unitId: 5,
qaId: 0,
questionString: 'シダ植物には、根、茎、葉の区別が{ ? }',
questionImage: '',
choicesId: [0, 1],
choicesString: ['ある', 'ない'],
answerId: 0,
answerString: 'ある',
answerImage: 'a060500.png'
}, {
menuId: 6,
unitId: 5,
qaId: 1,
questionString: 'シダ植物やコケ植物は、{ ? }をつくってなかまをふやす',
questionImage: '',
choicesId: [0, 1, 2],
choicesString: ['種子', '胞子', '球根'],
answerId: 1,
answerString: '胞子',
answerImage: ''
}, {
menuId: 7,
unitId: 0,
qaId: 0,
questionString: '川の上流では{ ? }、運ぱんがさかんである',
questionImage: '',
choicesId: [0, 1],
choicesString: ['侵食', '堆積'],
answerId: 0,
answerString: '侵食',
answerImage: ''
}, {
menuId: 7,
unitId: 0,
qaId: 1,
questionString: '海岸近くには{ ? }が、遠くには{ ? }が堆積',
questionImage: '',
choicesId: [0, 1],
choicesString: ['れきや砂、泥や粘土', '泥や粘土、れきや砂'],
answerId: 0,
answerString: 'れきや砂、泥や粘土',
answerImage: ''
}, {
menuId: 7,
unitId: 1,
qaId: 0,
questionString: 'おもにれきがおし固められてできた岩石を{ ? }という',
questionImage: '',
choicesId: [0, 1],
choicesString: ['砂岩', 'れき岩', '泥岩'],
answerId: 1,
answerString: 'れき岩',
answerImage: ''
}, {
menuId: 7,
unitId: 1,
qaId: 1,
questionString: '泥や粘土がおし固められてできた岩石を{ ? }という',
questionImage: '',
choicesId: [0, 1],
choicesString: ['砂岩', 'れき岩', '泥岩'],
answerId: 2,
answerString: '泥岩',
answerImage: ''
}, {
menuId: 7,
unitId: 1,
qaId: 2,
questionString: 'アンモナイトの化石は、{ ? }代の{ ? }化石',
questionImage: '',
choicesId: [0, 1, 2, 3],
choicesString: ['中生、示相', '古生、示相', '中生、示準', '古生、示準'],
answerId: 2,
answerString: '中生、示準',
answerImage: ''
}, {
menuId: 7,
unitId: 2,
qaId: 0,
questionString: 'マグマのねばりけが弱いほど{ ? }',
questionImage: '',
choicesId: [0, 1],
choicesString: ['流れやすい', '流れにくい'],
answerId: 0,
answerString: '流れやすい',
answerImage: ''
}, {
menuId: 7,
unitId: 2,
qaId: 1,
questionString: '円すいの形をした火山は、爆発とマグマの流出が交互に起こる。その代表が{ ? }である',
questionImage: '',
choicesId: [0, 1, 2],
choicesString: ['有珠山', '三原山', '富士山'],
answerId: 2,
answerString: '富士山',
answerImage: 'a070201.png'
}, {
menuId: 7,
unitId: 3,
qaId: 0,
questionString: '火山岩で、結晶になれなかった部分が{ ? }で、大きな結晶の部分が{ ? }',
questionImage: '',
choicesId: [0, 1],
choicesString: ['石基、斑晶', '斑晶、石基'],
answerId: 0,
answerString: '石基、斑晶',
answerImage: ''
}, {
menuId: 7,
unitId: 3,
qaId: 1,
questionString: '等粒状組織をもつ岩石は、{ ? }である',
questionImage: '',
choicesId: [0, 1],
choicesString: ['火山岩', '深成岩'],
answerId: 1,
answerString: '深成岩',
answerImage: 'a070301.png'
}, {
menuId: 7,
unitId: 3,
qaId: 2,
questionString: '石英や長石を多くふくむほど、岩石は{ ? }っぽくなる',
questionImage: '',
choicesId: [0, 1],
choicesString: ['白', '黒'],
answerId: 0,
answerString: '白',
answerImage: ''
}, {
menuId: 7,
unitId: 4,
qaId: 0,
questionString: '地震発生後、まず P 波による{ ? }が起こり、続いて S 波による{ ? }が起こる',
questionImage: '',
choicesId: [0, 1],
choicesString: ['主要動、初期微動', '初期微動、主要動'],
answerId: 1,
answerString: '白初期微動、主要動',
answerImage: 'a070400.png'
}, {
menuId: 7,
unitId: 4,
qaId: 1,
questionString: '初期微動継続時間は震源からの距離が遠くなるほど{ ? }',
questionImage: '',
choicesId: [0, 1],
choicesString: ['短くなる', '長くなる'],
answerId: 1,
answerString: '長くなる',
answerImage: 'a070401.png'
}, {
menuId: 7,
unitId: 5,
qaId: 0,
questionString: '{ ? }は、地震の規模の大きさを表す',
questionImage: '',
choicesId: [0, 1],
choicesString: ['震度', 'マグニチュード'],
answerId: 1,
answerString: 'マグニチュード',
answerImage: ''
}, {
menuId: 7,
unitId: 5,
qaId: 1,
questionString: '大きな力がはたらき、地層がくいちがう変動を{ ? }という',
questionImage: '',
choicesId: [0, 1],
choicesString: ['しゅう曲', '断層'],
answerId: 1,
answerString: '断層',
answerImage: 'a070501.png'
}];
return qa;
}
}