forked from bibixx/zdaj-se-pjatk-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtak_ang.json
3308 lines (3308 loc) · 89.1 KB
/
tak_ang.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": "Technika i Architekture Komputerów (TAK) [ENG]",
"id": "tak_ang",
"data": [
{
"question": "<p>Time sharing is a technique</p>",
"id": 3042,
"numberOfComments": 0,
"answers": [
{
"answer": "<p>Enabling data transfer is given time slots</p>",
"correct": false
},
{
"answer": "<p>Allowing a computer to speed up the computations</p>",
"correct": false
},
{
"answer": "<p>Enabling the execution of many processors on one processors</p>",
"correct": true
}
],
"comments": []
},
{
"question": "In order to add two floating-point numbers:",
"id": 2897,
"numberOfComments": 0,
"answers": [
{
"answer": "The result depends on which number we denormalize",
"correct": false
},
{
"answer": "When adding two negative numbers, we will get a positive one",
"correct": false
},
{
"answer": "Obtain the same result as one of the arguments, even if none of them is 0",
"correct": true
}
],
"comments": []
},
{
"question": "OCR is a kind of software we use for:",
"id": 2898,
"numberOfComments": 0,
"answers": [
{
"answer": "Transfering images to text files ",
"correct": true
},
{
"answer": "Wrong",
"correct": false
},
{
"answer": "Wrong",
"correct": false
},
{
"answer": "Wrong",
"correct": false
}
],
"comments": []
},
{
"question": "Data transfer from hard disk:",
"id": 2899,
"numberOfComments": 0,
"answers": [
{
"answer": "always involves buffers;",
"correct": true
},
{
"answer": "is much slower than data transfer from RAM to the central processor;",
"correct": true
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">Al Chwarizmi</span>",
"id": 2678,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">was writing the first computer programs</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">was making a living out of studies</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">wrote the solutions of mathematical problems in an algorithmic way</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">is the creator of the Arabic numerical system</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<p><span lang=\"EN-US\">Creators of mechanical calculators were</span></p>",
"id": 2677,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">Gottfried Wilhelm Leibniz</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">Blaise Pascal</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">Wilhelm Schickard</span>",
"correct": true
}
],
"comments": []
},
{
"question": "chess won a game to human",
"id": 3066,
"numberOfComments": 0,
"answers": [
{
"answer": "10 years ago",
"correct": false
},
{
"answer": "NEVER",
"correct": false
},
{
"answer": "5 Years Ago",
"correct": false
}
],
"comments": []
},
{
"question": "chess won a game to human",
"id": 3067,
"numberOfComments": 0,
"answers": [
{
"answer": "10 years ago",
"correct": false
},
{
"answer": "NEVER",
"correct": false
},
{
"answer": "5 Years Ago",
"correct": false
}
],
"comments": []
},
{
"question": "The following equations are correct in the floating-point system",
"id": 2922,
"numberOfComments": 0,
"answers": [
{
"answer": "110 0101 + 111 0101 = 000 0100",
"correct": true
},
{
"answer": "010 0100 + 010 0100 = 011 0100",
"correct": true
},
{
"answer": "101 0101 + 110 0101 = 111 0100<p></p>\n<p> </p>",
"correct": true
}
],
"comments": []
},
{
"question": "(0011) is a basic period of a number :",
"id": 2923,
"numberOfComments": 0,
"answers": [
{
"answer": "6/7",
"correct": false
},
{
"answer": "4/5",
"correct": true
},
{
"answer": "2/7",
"correct": false
}
],
"comments": []
},
{
"question": "To represent in 2-'s-complement system an integer with an absolute value more than 1.000.000.000, how many bytes do we need exactly?",
"id": 2924,
"numberOfComments": 0,
"answers": [
{
"answer": "30",
"correct": false
},
{
"answer": "16",
"correct": false
},
{
"answer": "4",
"correct": true
},
{
"answer": "6",
"correct": false
}
],
"comments": []
},
{
"question": "To determine the average complexity of an algorithm we need to evaluate",
"id": 2925,
"numberOfComments": 0,
"answers": [
{
"answer": "<div><span>all possible data</span></div>",
"correct": true
},
{
"answer": "a specific layout of a random variable",
"correct": true
},
{
"answer": "concrete data",
"correct": false
},
{
"answer": "all possible to imagine algorithms",
"correct": false
}
],
"comments": []
},
{
"question": "<div><span>To determine the pessimistic complexity of a problem we need to evaluate</span></div>",
"id": 2926,
"numberOfComments": 0,
"answers": [
{
"answer": "all possible data",
"correct": true
},
{
"answer": "all possible to imagine algorithms",
"correct": true
},
{
"answer": "concrete data",
"correct": false
},
{
"answer": "specific layout of a random variable",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">Adding 1.4 + 8.8 in a floating-point processor we are sure that</span><strong></strong><em></em>",
"id": 2927,
"numberOfComments": 0,
"answers": [
{
"answer": "the result will be rounded",
"correct": true
},
{
"answer": "all arguments are represented exactly",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">A serial port is</span>",
"id": 2679,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">always slower than a parallel port</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">installed in modern notebooks</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">used to connect a keyboard</span>",
"correct": true
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">The creator of the first computer is considered to be</span>",
"id": 2680,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">Konrad Zuse</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">John von Neuman</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">John Backus</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">Which one of these equations is true in the floating-point system</span>",
"id": 2681,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">111 0111 + 000 1000 = 111 0100</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">111 0111 + 000 0111 = 001 0101</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">001 0101 + 110 0101 = 111 0101</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">(001) is the expansion period of the number</span>",
"id": 2682,
"numberOfComments": 0,
"answers": [
{
"answer": "1/7",
"correct": true
},
{
"answer": "1/5",
"correct": false
},
{
"answer": "6/7",
"correct": false
},
{
"answer": "2/7",
"correct": true
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">Which of the following binary strings rounds best the given values in the floating-point system (3bit exponent + 4 of significand)?</span>",
"id": 2683,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">100 0111 best rounds up 7/129</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">110 0111 best rounds up 7/33</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">101 0111 best rounds up 1/11</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">CD-R are written once, because</span>",
"id": 2684,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">the lasers cause an irreversible fixation of magnetic domains</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">the surface of the disc is subjected to irreversible thermal damage</span>",
"correct": true
},
{
"answer": "<span>bits are so densly encapsulated that changing one of them would have caused a cascade of further changes</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">the interference of newly-written bits with the old ones would have caused too mcuh noise (hum?)</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">The cylinder count on a disc is</span>",
"id": 2685,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">dependable of the formatting options</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">twice as large as the count of the plates</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">as same as the count of the tracks of the surface of a plate</span>",
"correct": true
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">To connect a computer to a network you need a</span>",
"id": 2686,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">stable connection</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">modem</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">cable</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">network card</span>",
"correct": true
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">The packet’s route is decided by</span>",
"id": 2687,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">the operator</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">the router</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">the packet itself</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">The Turning test is</span>",
"id": 2688,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">one of the instructions of the Turning machine</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">verification of a computer’s intelligence</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">a type of a logical condition</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">verification of a person’s intelligence</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">Artificial intelligence achieved significant successes in the field of</span>",
"id": 2689,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">automatic translation</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">facial recognition</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">help in decision making</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">game programming</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">Polish diacritic symbols are coded in Windows as</span>",
"id": 2690,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">ASCII codes</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">bytes with their first bit being 1</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">two bytes</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">1 MB is exactly</span>",
"id": 2691,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">10^6 bytes</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">2^30 bytes</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">2^33 bits</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">Critical path method is used to</span>",
"id": 2692,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">find the shortest path in a graph</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">define the minimal time needed to end the work of a concurrent system</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">detect errors in logical circuits by tracking down the area of signal disruption</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">What happens during a linking of a program (program linking?) is</span>",
"id": 2693,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">determining the actual address based on the relative addresses calculated for complicated modules </span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">merging procedures found in the modules in one library</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">specification of the meaning of identificators found in different modules </span>",
"correct": true
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">During the module compilation</span>",
"id": 2694,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">the meaning of every identificators found in the module is specified</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">relative addresses of allocation of every variable declared in the module are determined </span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">object code is created</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">Pressing a key on a keyboard always sends</span>",
"id": 2695,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">8 bits</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">16 bits</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">different sequences of bites relative to the chosen font</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">For NP-completeness problems</span>",
"id": 2696,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">there are no known polynomial algorithms</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">is known, that there are no polynomial algorithms</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">it is possible in polynomial time to check if the object is a solution for the given problem </span>",
"correct": true
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">Every algorithmic problem</span>",
"id": 2697,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">can be solved, if we have large enough memory and enough time</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">for which there is a solution, the solution exists for every practical data</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">which complexity is (2^n) is practically impossible to solve for modern computers for data n>100</span>",
"correct": true
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">The fundamental problem of Charles Babbage was</span>",
"id": 2698,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">lack of money</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">lack of technology and engineering advancement</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">a woman</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">lack of inventions</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">The idea of using punch cards was first realized by</span>",
"id": 2699,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">Jacques de Vaucanson</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">Herman Hollerith</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">Charles Babbage</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">The floating-point number 110 1000 has</span>",
"id": 2700,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">a negative value</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">an absolute value less than 1/2</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">an absolute value less than 1 (because it's -1/4)</span>",
"correct": true
}
],
"comments": []
},
{
"question": "<p class=\"Standard\"><span lang=\"EN-US\">Are the following equations true in the floating-point system?</span></p>",
"id": 2701,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">111 0111 + 000 0111 = 001 0101</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">110 0111 + 110 0100 = 111 0110</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">101 0101 + 110 0100 = 111 0100</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">(101) is the expansion period of the number</span>",
"id": 2702,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">1/5 0.(0011)</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">1/10 0.0(0011)</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">4/5 0.(1100)</span>",
"correct": true
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">In 8-bit code the signed number representation</span>",
"id": 2703,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">11111111 represents value -1</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">10010000 represents value -16</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">11110000 represents value -112</span>",
"correct": true
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">Cylinders on a hard drive are</span>",
"id": 2704,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">sets of routes created by the producer on which bits are written</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">equally distributed from the middle surface fragments on different plates which were created during formatting</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">spirally distributed surface fragments above which heads are moving</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">The protocol thanks to which the whole Internet works is called</span>",
"id": 2705,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">http</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">ftp</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">telnet</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">TCP/IP</span>",
"correct": true
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">The protocol allowing for a safe file transfer is called</span>",
"id": 2706,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">ftp</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">http</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">ssh</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">scp</span>",
"correct": true
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">The speed of reading data from a hard drive may depend upon</span>",
"id": 2707,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">the speed of the disc’s rotation</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">the alignment of data on the surface of the disc</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">the location the hard drive is connected to on the motherboard</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">matching the frequency of refreshing the memory with the speed of data transmission forced by the controller</span>",
"correct": true
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">The Turing machine is</span>",
"id": 2708,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">an abstraction, never made a reality</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">a prototype of modern computers, partly made mechanically</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">able to solve any problem a modern computer is able to solve</span>",
"correct": true
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">The only peripheral attached to a computer sometimes is</span>",
"id": 2709,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">a bar code scanner</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">a keyboard</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">a mouse</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">The number 3/2004 in binary system has</span>",
"id": 2710,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">an infinite expansion</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">a periodic expansion of the length less than 1111</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">a periodic expansion of the length equal 1111</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">Floating-point addition is</span>",
"id": 2711,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">exact</span>",
"correct": false
},
{
"answer": "<span lang=\"EN-US\">commutative</span>",
"correct": true
},
{
"answer": "<span lang=\"EN-US\">distributive</span>",
"correct": false
}
],
"comments": []
},
{
"question": "<span lang=\"EN-US\">(001) is the periodic expansion of the number</span>",
"id": 2712,
"numberOfComments": 0,
"answers": [
{
"answer": "<span lang=\"EN-US\">1/7</span>",