forked from bibixx/zdaj-se-pjatk-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfiz.json
2936 lines (2936 loc) · 75.4 KB
/
fiz.json
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
{
"$schema": "schemas/subject.json",
"title": "Fizyka Kolos1 (angielska)",
"id": "fiz",
"data": [
{
"question": "<span lang=\"EN-US\">If an object has an acceleration of 0 m/s<sup>2</sup>, then one can be sure that the object is not <span>____</span>.</span>",
"id": 1992,
"numberOfComments": 0,
"answers": [
{
"answer": "<span>moving</span>",
"correct": false
},
{
"answer": "<span>changing velocity</span>",
"correct": true
},
{
"answer": "<span>changing position</span>",
"correct": false
},
{
"answer": "--",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">If car A passes car B, then car A must be ____.</span>",
"id": 1993,
"numberOfComments": 0,
"answers": [
{
"answer": "<span>accelerating</span>",
"correct": false
},
{
"answer": "<p class=\"MsoNormal\"><span lang=\"EN-US\">accelerating at a greater rate than car B.</span></p>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">moving faster than car B and accelerating more than car B</span>",
"correct": false
},
{
"answer": "<p class=\"MsoNormal\"><span lang=\"EN-US\">moving faster than car B, but not necessarily accelerating.</span></p>",
"correct": true
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">A fullback is running down the football field in a straight line. He starts at the 0-yard line at 0 seconds. At 1 second, he is on the 10-yard line; at 2 seconds, he is on the 20-yard line; at 3 seconds, he is on the 30-yard line; and at 4 seconds, he is on the 40-yard line. </span><span>This is evidence that</span><p></p>\n<p class=\"MsoNormal\"> \n </p>",
"id": 1994,
"numberOfComments": 0,
"answers": [
{
"answer": "he is accelerating",
"correct": false
},
{
"answer": "he is covering a greater distance in each consecutive second.",
"correct": false
},
{
"answer": "he is moving with a constant speed (on average).",
"correct": true
},
{
"answer": "---",
"correct": false
}
],
"comments": []
},
{
"question": "If an object is moving eastward and slowing down, then the direction of its velocity vector is ____.",
"id": 1995,
"numberOfComments": 0,
"answers": [
{
"answer": "eastward",
"correct": true
},
{
"answer": "westward",
"correct": false
},
{
"answer": "neither",
"correct": false
},
{
"answer": "not enough info to tell",
"correct": false
}
],
"comments": []
},
{
"question": "Treść pytaniaIf an object is moving eastward and slowing down, then the direction of its acceleration vector is ____.",
"id": 1996,
"numberOfComments": 0,
"answers": [
{
"answer": "eastward",
"correct": false
},
{
"answer": "westward",
"correct": false
},
{
"answer": "neither",
"correct": false
},
{
"answer": "not enough info to tell",
"correct": true
}
],
"comments": []
},
{
"question": " Which one of the following quantities is NOT a vector?",
"id": 1997,
"numberOfComments": 0,
"answers": [
{
"answer": "10 mi/hr, east",
"correct": false
},
{
"answer": "10 mi/hr/sec, wes",
"correct": false
},
{
"answer": "35 m/s, north",
"correct": false
},
{
"answer": "20 m/s",
"correct": true
}
],
"comments": []
},
{
"question": "Which one of the following quantities is NOT a speed?",
"id": 1998,
"numberOfComments": 0,
"answers": [
{
"answer": "10 mi/hr",
"correct": false
},
{
"answer": "10 mi/hr/sec",
"correct": true
},
{
"answer": "20 m/s",
"correct": false
},
{
"answer": "35 m/s",
"correct": false
}
],
"comments": []
},
{
"question": "Treść pytaniaWhich one of the following statements is NOT true of a free-falling object? An object in a state of free fall ____.",
"id": 1999,
"numberOfComments": 0,
"answers": [
{
"answer": "falls with a constant speed of -10 m/s.",
"correct": true
},
{
"answer": "falls with a acceleration of -10 m/s/s.",
"correct": false
},
{
"answer": "falls under the sole influence of gravity.",
"correct": false
},
{
"answer": "falls with downward acceleration which has a constant magnitude.",
"correct": false
}
],
"comments": []
},
{
"question": "The average speed of an object which moves 10 kilometers (km) in 30 minutes is ____.",
"id": 2000,
"numberOfComments": 0,
"answers": [
{
"answer": "10 km/hr",
"correct": false
},
{
"answer": "20 km/hr",
"correct": true
},
{
"answer": "30 km/hr",
"correct": false
},
{
"answer": "more than 30 km/hr",
"correct": false
}
],
"comments": []
},
{
"question": "What is the acceleration of a car that maintains a constant velocity of 55 mi/hr for 10.0 seconds?",
"id": 2001,
"numberOfComments": 0,
"answers": [
{
"answer": "0",
"correct": true
},
{
"answer": "5.5 mi /hr/s",
"correct": false
},
{
"answer": " 5.5 mi /s/s",
"correct": false
},
{
"answer": "550 mi/hr/s",
"correct": false
}
],
"comments": []
},
{
"question": "As an object freely falls, its ____.",
"id": 2002,
"numberOfComments": 0,
"answers": [
{
"answer": "speed increases",
"correct": true
},
{
"answer": "acceleration increases",
"correct": false
},
{
"answer": "both of these",
"correct": false
},
{
"answer": "none of these",
"correct": false
}
],
"comments": []
},
{
"question": "A speedometer is placed upon a free-falling object in order to measure its instantaneous speed during the course of its fall. Its speed reading (neglecting air resistance) would increase each second by ____.",
"id": 2003,
"numberOfComments": 0,
"answers": [
{
"answer": "about 5 m/s",
"correct": false
},
{
"answer": "about 10 m/s",
"correct": true
},
{
"answer": "about 15 m/s",
"correct": false
},
{
"answer": "a variable amount",
"correct": false
}
],
"comments": []
},
{
"question": "Ten seconds after being dropped from rest, a free-falling object will be moving with a speed of ____.",
"id": 2004,
"numberOfComments": 0,
"answers": [
{
"answer": "about 10 m/s",
"correct": false
},
{
"answer": "about 50 m/s",
"correct": false
},
{
"answer": "about 100 m/s.",
"correct": true
},
{
"answer": "more than 100 m/s",
"correct": false
}
],
"comments": []
},
{
"question": "A baseball pitcher delivers a fast ball. During the throw, the speed of the ball increases from 0 to 30.0 m/s over a time of 0.100 seconds. The average acceleration of the baseball is ____ m/s2.",
"id": 2005,
"numberOfComments": 0,
"answers": [
{
"answer": "3.00",
"correct": false
},
{
"answer": "30.0",
"correct": false
},
{
"answer": "300",
"correct": true
},
{
"answer": "3000",
"correct": false
}
],
"comments": []
},
{
"question": "Treść pytaniaOn takeoff, a rocket accelerates from rest at a rate of 50.0 m/s2 for exactly 1 minute. The rocket's speed after this minute of steady acceleration will be ____ m/s.",
"id": 2006,
"numberOfComments": 0,
"answers": [
{
"answer": "50.0",
"correct": false
},
{
"answer": "500",
"correct": false
},
{
"answer": "3.00 x 103",
"correct": true
},
{
"answer": "3.60 x 103",
"correct": false
}
],
"comments": []
},
{
"question": "When a rock is dropped, it will accelerate downward at a rate of 9.8 m/s2. If the same rock is thrown downward (instead of being dropped from rest), it acceleration will be ____. (Ignore air resistance effects.)",
"id": 2007,
"numberOfComments": 0,
"answers": [
{
"answer": "less than 9.8 m/s2",
"correct": false
},
{
"answer": "9.8 m/s2",
"correct": true
},
{
"answer": "more than 9.8 m/s2",
"correct": false
},
{
"answer": "---",
"correct": false
}
],
"comments": []
},
{
"question": "Consider drops of water that leak from a dripping faucet at a constant rate. As the drops fall they ____.",
"id": 2008,
"numberOfComments": 0,
"answers": [
{
"answer": "get closer together",
"correct": false
},
{
"answer": "get farther apart",
"correct": true
},
{
"answer": "remain at a relatively fixed distance from one another",
"correct": false
},
{
"answer": "---",
"correct": false
}
],
"comments": []
},
{
"question": "Renatta Oyle is again found driving her '86 Yugo down Lake Avenue, leaving the following trail of oil drops on the pavement. If her car is moving from right to left, then ...",
"id": 2009,
"numberOfComments": 0,
"answers": [
{
"answer": "her velocity has a rightward direction and her acceleration has a rightward direction.",
"correct": false
},
{
"answer": "her velocity has a rightward direction and her acceleration has a leftward direction.",
"correct": false
},
{
"answer": "her velocity has a leftward direction and her acceleration has a rightward direction.",
"correct": false
},
{
"answer": "her velocity has a leftward direction and her acceleration has a leftward direction.",
"correct": true
}
],
"comments": []
},
{
"question": "If two displacement vectors of 6 meters and 8 meters (with varying directions) are added together, then the resultant could range anywhere between ___ meters and ___ meters.",
"id": 2010,
"numberOfComments": 0,
"answers": [
{
"answer": "0, 48",
"correct": false
},
{
"answer": "1.33, 48",
"correct": false
},
{
"answer": "0, 14",
"correct": false
},
{
"answer": "2, 14",
"correct": true
}
],
"comments": []
},
{
"question": "Three vectors are added following the rules of vector addition. A fourth vector is drawn from the tail of the first vector to the head of the last vector. This fourth vector is referred to as ____.",
"id": 2011,
"numberOfComments": 0,
"answers": [
{
"answer": "the equilibrant",
"correct": false
},
{
"answer": "the hypotenuse",
"correct": false
},
{
"answer": "the resultant",
"correct": true
},
{
"answer": "a mistake",
"correct": false
}
],
"comments": []
},
{
"question": "When adding vector B to vector A geometrically (or graphically) using the head to tail method, the resultant is drawn from ____ to the ____.",
"id": 2012,
"numberOfComments": 0,
"answers": [
{
"answer": "head of A, tail of B",
"correct": false
},
{
"answer": "tail of A, head of B",
"correct": true
},
{
"answer": "head of B, tail of A",
"correct": false
},
{
"answer": "tail of B, head of A",
"correct": false
}
],
"comments": []
},
{
"question": "An object is undergoing free fall motion. As it falls, the object's ____.",
"id": 2013,
"numberOfComments": 0,
"answers": [
{
"answer": "speed increases",
"correct": true
},
{
"answer": "acceleration increases",
"correct": false
},
{
"answer": "both of these",
"correct": false
},
{
"answer": "none of these",
"correct": true
}
],
"comments": []
},
{
"question": "Treść pytaniaA football is kicked into the air at an angle of 45 degrees with the horizontal. At the very top of the ball's path, its velocity is _______.",
"id": 2014,
"numberOfComments": 0,
"answers": [
{
"answer": "entirely vertical",
"correct": false
},
{
"answer": "entirely horizontal",
"correct": true
},
{
"answer": "both vertical and horizontal",
"correct": false
},
{
"answer": "not enough information given to know",
"correct": false
}
],
"comments": []
},
{
"question": "A football is kicked into the air at an angle of 45 degrees with the horizontal. At the very top of the ball's path, its acceleration is _______. (Neglect the effects of air resistance.)",
"id": 2015,
"numberOfComments": 0,
"answers": [
{
"answer": "entirely vertical",
"correct": true
},
{
"answer": "entirely horizontal",
"correct": false
},
{
"answer": "both vertical and horizontal",
"correct": false
},
{
"answer": "not enough information given to know.",
"correct": false
}
],
"comments": []
},
{
"question": "Treść pytaniaA football is kicked into the air at an angle of 45 degrees with the horizontal. At the very top of the ball's path, the net force acting upon it is _______. (Neglect the effects of air resistance.)",
"id": 2016,
"numberOfComments": 0,
"answers": [
{
"answer": "entirely vertical",
"correct": true
},
{
"answer": "entirely horizontal",
"correct": false
},
{
"answer": "both vertical and horizontal",
"correct": false
},
{
"answer": "not enough information given to know.",
"correct": false
}
],
"comments": []
},
{
"question": "At what point in its path is the horizontal component of the velocity (vx) of a projectile the smallest?",
"id": 2017,
"numberOfComments": 0,
"answers": [
{
"answer": "The instant it is thrown",
"correct": false
},
{
"answer": "Halfway to the top",
"correct": false
},
{
"answer": "At the top",
"correct": false
},
{
"answer": "It is the same throughout the path",
"correct": true
}
],
"comments": []
},
{
"question": "At what point in its path is the vertical component of the velocity (vy) of a projectile the smallest?",
"id": 2018,
"numberOfComments": 0,
"answers": [
{
"answer": "The instant it is thrown",
"correct": false
},
{
"answer": "Halfway to the top",
"correct": false
},
{
"answer": "At the top",
"correct": true
},
{
"answer": "As it nears the top.e. It is the same throughout the path",
"correct": false
}
],
"comments": []
},
{
"question": "An airplane that flies at 100 km/h in a 100 km/h hurricane crosswind has a speed (relative to the ground) of ____.",
"id": 2019,
"numberOfComments": 0,
"answers": [
{
"answer": "0 km/h",
"correct": false
},
{
"answer": "100 km/h",
"correct": false
},
{
"answer": "141 km/h",
"correct": true
},
{
"answer": "200 km/h",
"correct": false
}
],
"comments": []
},
{
"question": "An airplane moves at 141 km/h toward the northeast (45 degrees). What is its component velocity in the northward direction?",
"id": 2020,
"numberOfComments": 0,
"answers": [
{
"answer": "41 km/h",
"correct": false
},
{
"answer": "100 km/h",
"correct": true
},
{
"answer": "110 km/h",
"correct": false
},
{
"answer": "141 km/h",
"correct": false
}
],
"comments": []
},
{
"question": "Roll a bowling ball off the edge of a table. As it falls, its horizontal component of velocity ___.",
"id": 2021,
"numberOfComments": 0,
"answers": [
{
"answer": "decreases",
"correct": false
},
{
"answer": "remains constant",
"correct": true
},
{
"answer": "increases",
"correct": false
},
{
"answer": "--",
"correct": false
}
],
"comments": []
},
{
"question": "A bullet is fired horizontally and hits the ground in 0.5 seconds. If it had been fired with twice the speed in the same direction, it would have hit the ground in ____. (Assume no air resistance.)",
"id": 2022,
"numberOfComments": 0,
"answers": [
{
"answer": "less than 0.5 s",
"correct": false
},
{
"answer": "more than 0.5 s",
"correct": false
},
{
"answer": "0.5 s",
"correct": true
},
{
"answer": "---",
"correct": false
}
],
"comments": []
},
{
"question": "A projectile is launched at an angle of 15 degrees above the horizontal and lands down range. For the same speed, what other projection angle would produce the same downrange distance?",
"id": 2023,
"numberOfComments": 0,
"answers": [
{
"answer": "30 degrees",
"correct": false
},
{
"answer": "45 degrees",
"correct": false
},
{
"answer": "50 degrees",
"correct": false
},
{
"answer": "75 degrees",
"correct": true
}
],
"comments": []
},
{
"question": "Two projectiles are fired at equal speeds but different angles. One is fired at angle of 30 degrees and the other at 60 degrees. The projectile to hit the ground first will be the one fired at (neglect air resistance) ____.",
"id": 2024,
"numberOfComments": 0,
"answers": [
{
"answer": "30 degrees",
"correct": true
},
{
"answer": "60 degrees",
"correct": false
},
{
"answer": "both hit at the same time",
"correct": false
},
{
"answer": "---",
"correct": false
}
],
"comments": []
},
{
"question": "A 1200 kg car and a 2400 kg car are lifted to the same height at a constant speed in a auto service station. Lifting the more massive car requires ____ work.",
"id": 2025,
"numberOfComments": 0,
"answers": [
{
"answer": "lessb. the same",
"correct": false
},
{
"answer": "twice as much",
"correct": true
},
{
"answer": "four times as much",
"correct": false
},
{
"answer": "more than 4 times as much",
"correct": false
}
],
"comments": []
},
{
"question": "An arrow is drawn back so that 50 Joules of potential energy is stored in the stretched bow and string. Whenreleased, the arrow will have a kinetic energy of ____ Joules.",
"id": 2026,
"numberOfComments": 0,
"answers": [
{
"answer": "50",
"correct": true
},
{
"answer": "more than 50",
"correct": false
},
{
"answer": "less than 50",
"correct": false
},
{
"answer": "---",
"correct": false
}
],
"comments": []
},
{
"question": "A child lifts a box up from the floor. The child then carries the box with constant speed to the other side of the room and puts the box down. How much work does he do on the box while walking across the floor at constant speed?",
"id": 2027,
"numberOfComments": 0,
"answers": [
{
"answer": "zero J",
"correct": true
},
{
"answer": "more than zero J",
"correct": false
},
{
"answer": "more information needed to determine",
"correct": false
},
{
"answer": "----",
"correct": false
}
],
"comments": []
},
{
"question": "A 1000-kg car is moving at 40.0 km/hr when the driver slams on the brakes and skids to a stop (with locked brakes) over a distance of 20.0 meters. How far will the car skid with locked brakes if it is traveling at 120. km/hr?",
"id": 2028,
"numberOfComments": 0,
"answers": [
{
"answer": "20.0 m",
"correct": false
},
{
"answer": "60.0 m",
"correct": false
},
{
"answer": "90.0 m",
"correct": false
},
{
"answer": "180. m",
"correct": false
}
],
"comments": []
},
{
"question": "A platform diver weighs 500 N. She steps off a diving board that is elevated to a height of 10 meters above the water. The diver will possess ___ Joules of kinetic energy when she hits the water.",
"id": 2029,
"numberOfComments": 0,
"answers": [
{
"answer": "10",
"correct": false
},
{
"answer": "500",
"correct": false
},
{
"answer": "510",
"correct": false
},
{
"answer": "5000",
"correct": true
}
],
"comments": []
},
{
"question": "A ball is projected into the air with 100 J of kinetic energy. The kinetic energy is transformed into gravitational potential energy on the path towards the peak of its trajectory. When the ball returns to its original height, its kinetic energy is ____ Joules. Do consider the effects of air resistance",
"id": 2030,
"numberOfComments": 0,
"answers": [
{
"answer": "less than 100",
"correct": true
},
{
"answer": "100",
"correct": false
},
{
"answer": "more than 100",
"correct": false
},
{
"answer": "not enough information given",
"correct": false
}
],
"comments": []
},
{
"question": "During a construction project, a 2500 N object is lifted high above the ground. It is released and falls 10.0 meters and drives a post 0.100 m into the ground. The average impact force on the object is ____ Newtons.",
"id": 2031,
"numberOfComments": 0,
"answers": [
{
"answer": "2500",
"correct": false
},
{
"answer": "25000",
"correct": false
},
{
"answer": "250,000",
"correct": true
},
{
"answer": "2,500,000",
"correct": false
}
],
"comments": []
},
{
"question": "A 10-Newton object moves to the left at 1 m/s. Its kinetic energy is approximately ____ Joules.",
"id": 2032,
"numberOfComments": 0,
"answers": [
{
"answer": "0.5",
"correct": true
},
{
"answer": "1",
"correct": false
},
{
"answer": "10",
"correct": false
},
{
"answer": "more than 10",
"correct": false
}
],
"comments": []
},
{
"question": "Luke Autbeloe stands on the edge of a roof throws a ball downward. It strikes the ground with 100 J of kinetic energy. Luke now throws another identical ball upward with the same initial speed, and this too falls to the ground. Neglecting air resistance, the second ball hits the ground with a kinetic energy of ____ J.",
"id": 2033,
"numberOfComments": 0,
"answers": [
{
"answer": "less than 100",
"correct": false
},
{
"answer": "100",