-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagct.html
1660 lines (1637 loc) · 88.3 KB
/
agct.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>AGCT</title>
<link rel="icon" href="assets/logo.svg" type="image/svg+xml">
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
.timer {
font-size: 2em;
text-align: center;
margin-bottom: 20px;
}
.question {
margin-bottom: 20px;
}
.question p {
font-size: 1.2em;
margin-bottom: 10px;
}
.options {
margin-left: 20px;
}
/* Apply the button style here */
.submit-btn {
display: inline-block;
outline: 0;
cursor: pointer;
padding: 5px 16px;
font-size: 14px;
font-weight: 500;
line-height: 20px;
vertical-align: middle;
border: 1px solid #1b1f2326; /* Border color */
border-radius: 6px;
color: #24292e; /* Text color */
background-color: #ffffff; /* Keep background white */
box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px 0px inset;
transition: 0.2s cubic-bezier(0.3, 0, 0.5, 1);
transition-property: color, background-color, border-color;
text-align: center;
text-decoration: none;
}
/* Hover effect for the button */
.submit-btn:hover {
background-color: #f3f4f6;
border-color: #1b1f2326;
transition-duration: 0.1s;
}
/* Active state effect */
.submit-btn:active {
transform: translateY(1px);
}
/* Initially hide the submit button */
.submit-btn {
display: none;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="timer" id="timer">Time Remaining: 40:00</div>
<form id="testForm">
<!-- Question 11 -->
<div class="question">
<p>1. The organization of teams FOSTERS interest in games</p>
<div class="options">
<label><input type="radio" name="q11" value="1"> spoils</label><br>
<label><input type="radio" name="q11" value="2"> changes</label><br>
<label><input type="radio" name="q11" value="3"> develops</label><br>
<label><input type="radio" name="q11" value="4"> stops</label>
</div>
</div>
<!-- Question 12 -->
<div class="question">
<p>2. The captain gave a VIVID description of the camp.</p>
<div class="options">
<label><input type="radio" name="q12" value="1"> true</label><br>
<label><input type="radio" name="q12" value="2"> clear</label><br>
<label><input type="radio" name="q12" value="3"> long</label><br>
<label><input type="radio" name="q12" value="4"> short</label>
</div>
</div>
<!-- Question 13 -->
<div class="question">
<p>3. The new bomb sight is very EFFECTIVE</p>
<div class="options">
<label><input type="radio" name="q13" value="1"> important</label><br>
<label><input type="radio" name="q13" value="2"> desirable</label><br>
<label><input type="radio" name="q13" value="3"> successful</label><br>
<label><input type="radio" name="q13" value="4"> simple</label>
</div>
</div>
<!-- Question 14 -->
<div class="question">
<p>4. The men were ASSEMBLED in the mess hall</p>
<div class="options">
<label><input type="radio" name="q14" value="1"> eating</label><br>
<label><input type="radio" name="q14" value="2"> billeted</label><br>
<label><input type="radio" name="q14" value="3"> playing</label><br>
<label><input type="radio" name="q14" value="4"> gathered</label>
</div>
</div>
<!-- Question 15 -->
<div class="question">
<p>5. The smaller gun was PREFERABLE</p>
<div class="options">
<label><input type="radio" name="q15" value="1"> lighter</label><br>
<label><input type="radio" name="q15" value="2"> more desirable</label><br>
<label><input type="radio" name="q15" value="3"> older</label><br>
<label><input type="radio" name="q15" value="4"> more accurate</label>
</div>
</div>
<!-- Question 16 -->
<div class="question">
<p>6. The ADMINISTRATION of the camp is handled by officers</p>
<div class="options">
<label><input type="radio" name="q16" value="1"> construction</label><br>
<label><input type="radio" name="q16" value="2"> action</label><br>
<label><input type="radio" name="q16" value="3"> service</label><br>
<label><input type="radio" name="q16" value="4"> management</label>
</div>
</div>
<!-- Question 17 -->
<div class="question">
<p>7. The company WITHSTOOD the rifle fire</p>
<div class="options">
<label><input type="radio" name="q17" value="1"> retreated from</label><br>
<label><input type="radio" name="q17" value="2"> opposed successfully</label><br>
<label><input type="radio" name="q17" value="3"> advanced toward</label><br>
<label><input type="radio" name="q17" value="4"> was defeated by</label>
</div>
</div>
<!-- Question 18 -->
<div class="question">
<p>8. Big guns were UTILIZED in the attack.</p>
<div class="options">
<label><input type="radio" name="q18" value="1"> abandoned</label><br>
<label><input type="radio" name="q18" value="2"> useless</label><br>
<label><input type="radio" name="q18" value="3"> used</label><br>
<label><input type="radio" name="q18" value="4"> moved</label>
</div>
</div>
<!-- Question 19 -->
<div class="question">
<p>9. With which can Sergeant Jones buy the most? (A penny is 1 cent, a nickel is 5 cents, a dime is 10 cents, and a quarter is 25 cents)</p>
<div class="options">
<label><input type="radio" name="q19" value="1"> 3 dimes and 2 nickels</label><br>
<label><input type="radio" name="q19" value="2"> 5 dimes</label><br>
<label><input type="radio" name="q19" value="3"> 1 quarter, 1 dime, and 4 nickels</label><br>
<label><input type="radio" name="q19" value="4"> 3 dimes, 3 nickels, and 4 pennies</label>
</div>
</div>
<!-- Question 20 -->
<div class="question">
<p>10. How many cartridges does a private have if he has 41 cartridges and uses 2 dozen of them?</p>
<div class="options">
<label><input type="radio" name="q20" value="1"> 21</label><br>
<label><input type="radio" name="q20" value="2"> 17</label><br>
<label><input type="radio" name="q20" value="3"> 65</label><br>
<label><input type="radio" name="q20" value="4"> 39</label>
</div>
</div>
<!-- Question 21 -->
<div class="question">
<p>11. Private Black had 26 cartridges, Private Green had 3 times as many as Black, and Private Brown had 19 less than Green. How many did Brown have?</p>
<div class="options">
<label><input type="radio" name="q21" value="1"> 49</label><br>
<label><input type="radio" name="q21" value="2"> 51</label><br>
<label><input type="radio" name="q21" value="3"> 59</label><br>
<label><input type="radio" name="q21" value="4"> 69</label>
</div>
</div>
<!-- Question 22 -->
<div class="question">
<p>12. The cost to the Army of installing a new windowpane is 75 cents. if the glass costs 23 cents and the putty 2 cents, how much does the time and labor of the glazier cost?</p>
<div class="options">
<label><input type="radio" name="q22" value="1"> 35 cents</label><br>
<label><input type="radio" name="q22" value="2"> 50 cents</label><br>
<label><input type="radio" name="q22" value="3"> 40 cents</label><br>
<label><input type="radio" name="q22" value="4"> 25 cents</label>
</div>
</div>
<!-- Question 23 -->
<div class="question">
<p>13. Private Billings bought some books for $9. He sold them to his bunkmates for $10, making $0.25 on each book. How many books were there?</p>
<div class="options">
<label><input type="radio" name="q23" value="1"> 4</label><br>
<label><input type="radio" name="q23" value="2"> 6</label><br>
<label><input type="radio" name="q23" value="3"> 8</label><br>
<label><input type="radio" name="q23" value="4"> 10</label>
</div>
</div>
<!-- Question 24 -->
<div class="question">
<p>14. Company A has 54 trucks in active service. Company B has only 1/6 as many, and one of these is broken down. How many trucks in active service does Company B have?</p>
<div class="options">
<label><input type="radio" name="q24" value="1"> 5</label><br>
<label><input type="radio" name="q24" value="2"> 6</label><br>
<label><input type="radio" name="q24" value="3"> 8</label><br>
<label><input type="radio" name="q24" value="4"> 9</label>
</div>
</div>
<!-- Question 25 -->
<div class="question">
<p>15. If there are 20 cans of beans in a case, and a case costs $1.50, what is the price per can?</p>
<div class="options">
<label><input type="radio" name="q25" value="1"> 5¼ cents</label><br>
<label><input type="radio" name="q25" value="2"> 6½ cents</label><br>
<label><input type="radio" name="q25" value="3"> 7½ cents</label><br>
<label><input type="radio" name="q25" value="4"> 8¼ cents</label>
</div>
</div>
<!-- Question 26 -->
<div class="question">
<p>16. What is the average number of rounds of ammunition fired per day if a machine gunner fires 231 rounds in 7 days?</p>
<div class="options">
<label><input type="radio" name="q26" value="1"> 37</label><br>
<label><input type="radio" name="q26" value="2"> 66</label><br>
<label><input type="radio" name="q26" value="3"> 33</label><br>
<label><input type="radio" name="q26" value="4"> 1617</label>
</div>
</div>
<!-- Question 27 -->
<div class="question">
<p>17. How many boxes? Note: ALL boxes are the same size within a question.</p>
<div class="image-container">
<img src="assets/agct1.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q27" value="1"> 5</label><br>
<label><input type="radio" name="q27" value="2"> 4</label><br>
<label><input type="radio" name="q27" value="3"> 3</label><br>
<label><input type="radio" name="q27" value="4"> 6</label>
</div>
</div>
<!-- Question 28 -->
<div class="question">
<p>18. How many boxes?</p>
<div class="image-container">
<img src="assets/agct2.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q28" value="1"> 4</label><br>
<label><input type="radio" name="q28" value="2"> 5</label><br>
<label><input type="radio" name="q28" value="3"> 8</label><br>
<label><input type="radio" name="q28" value="4"> 6</label>
</div>
</div>
<!-- Question 29 -->
<div class="question">
<p>19. How many boxes?</p>
<div class="image-container">
<img src="assets/agct3.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q29" value="1"> 5</label><br>
<label><input type="radio" name="q29" value="2"> 6</label><br>
<label><input type="radio" name="q29" value="3"> 8</label><br>
<label><input type="radio" name="q29" value="4"> 10</label>
</div>
</div>
<!-- Question 30 -->
<div class="question">
<p>20. How many boxes?</p>
<div class="image-container">
<img src="assets/agct4.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q30" value="1"> 6</label><br>
<label><input type="radio" name="q30" value="2"> 3</label><br>
<label><input type="radio" name="q30" value="3"> 4</label><br>
<label><input type="radio" name="q30" value="4"> 5</label>
</div>
</div>
<!-- Question 31 -->
<div class="question">
<p>21. How many boxes?</p>
<div class="image-container">
<img src="assets/agct5.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q31" value="1"> 15</label><br>
<label><input type="radio" name="q31" value="2"> 17</label><br>
<label><input type="radio" name="q31" value="3"> 20</label><br>
<label><input type="radio" name="q31" value="4"> 18</label>
</div>
</div>
<!-- Question 32 -->
<div class="question">
<p>22. How many boxes?</p>
<div class="image-container">
<img src="assets/agct6.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q32" value="1"> 9</label><br>
<label><input type="radio" name="q32" value="2"> 27</label><br>
<label><input type="radio" name="q32" value="3"> 18</label><br>
<label><input type="radio" name="q32" value="4"> 36</label>
</div>
</div>
<!-- Question 33 -->
<div class="question">
<p>23. How many boxes?</p>
<div class="image-container">
<img src="assets/agct7.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q33" value="1"> 5</label><br>
<label><input type="radio" name="q33" value="2"> 7</label><br>
<label><input type="radio" name="q33" value="3"> 6</label><br>
<label><input type="radio" name="q33" value="4"> 8</label>
</div>
</div>
<!-- Question 34 -->
<div class="question">
<p>24. How many boxes?</p>
<div class="image-container">
<img src="assets/agct8.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q34" value="1"> 5</label><br>
<label><input type="radio" name="q34" value="2"> 7</label><br>
<label><input type="radio" name="q34" value="3"> 9</label><br>
<label><input type="radio" name="q34" value="4"> 11</label>
</div>
</div>
<!-- Question 35 -->
<div class="question">
<p>25. One man can IMPAIR the work of a whole squad</p>
<div class="options">
<label><input type="radio" name="q35" value="1"> spoil</label><br>
<label><input type="radio" name="q35" value="2"> replace</label><br>
<label><input type="radio" name="q35" value="3"> repair</label><br>
<label><input type="radio" name="q35" value="4"> improve</label>
</div>
</div>
<!-- Question 36 -->
<div class="question">
<p>26. EMPLACEMENTS for the guns were provided</p>
<div class="options">
<label><input type="radio" name="q36" value="1"> foundations</label><br>
<label><input type="radio" name="q36" value="2"> wheels</label><br>
<label><input type="radio" name="q36" value="3"> extra parts</label><br>
<label><input type="radio" name="q36" value="4"> trucks</label>
</div>
</div>
<!-- Question 37 -->
<div class="question">
<p>27. The trucks VEERED to the south.</p>
<div class="options">
<label><input type="radio" name="q37" value="1"> drove</label><br>
<label><input type="radio" name="q37" value="2"> turned</label><br>
<label><input type="radio" name="q37" value="3"> climbed</label><br>
<label><input type="radio" name="q37" value="4"> faced</label>
</div>
</div>
<!-- Question 38 -->
<div class="question">
<p>28. The soldier's HABILIMENTS were in good order.</p>
<div class="options">
<label><input type="radio" name="q38" value="1"> papers</label><br>
<label><input type="radio" name="q38" value="2"> letters</label><br>
<label><input type="radio" name="q38" value="3"> books</label><br>
<label><input type="radio" name="q38" value="4"> clothes</label>
</div>
</div>
<!-- Question 39 -->
<div class="question">
<p>29. The TERRAIN was flat.</p>
<div class="options">
<label><input type="radio" name="q39" value="1"> ground</label><br>
<label><input type="radio" name="q39" value="2"> river bed</label><br>
<label><input type="radio" name="q39" value="3"> terrace</label><br>
<label><input type="radio" name="q39" value="4"> base</label>
</div>
</div>
<!-- Question 40 -->
<div class="question">
<p>30. The tank's speed EXCEEDED 30 miles an hour</p>
<div class="options">
<label><input type="radio" name="q40" value="1"> was more than</label><br>
<label><input type="radio" name="q40" value="2"> equalled</label><br>
<label><input type="radio" name="q40" value="3"> almost reached</label><br>
<label><input type="radio" name="q40" value="4"> was less than</label>
</div>
</div>
<!-- Question 41 -->
<div class="question">
<p>31. If there are 24 cans of peaches to a case, and a case costs $2.64, what is the price per can?</p>
<div class="options">
<label><input type="radio" name="q41" value="1"> 10 cents</label><br>
<label><input type="radio" name="q41" value="2"> 11 cents</label><br>
<label><input type="radio" name="q41" value="3"> 12 cents</label><br>
<label><input type="radio" name="q41" value="4"> 13 cents</label>
</div>
</div>
<!-- Question 42 -->
<div class="question">
<p>32. How many cartridges does a rifleman have in each pile if he sorts 228 cartridges into 3 equal piles?</p>
<div class="options">
<label><input type="radio" name="q42" value="1"> 76</label><br>
<label><input type="radio" name="q42" value="2"> 57</label><br>
<label><input type="radio" name="q42" value="3"> 684</label><br>
<label><input type="radio" name="q42" value="4"> 77</label>
</div>
</div>
<!-- Question 43 -->
<div class="question">
<p>33. Private A spends 45 cents a day at the canteen. Private B spends 38 cents a day at the canteen. How much more does A spend than B in a 7-day week?</p>
<div class="options">
<label><input type="radio" name="q43" value="1"> 35 cents</label><br>
<label><input type="radio" name="q43" value="2"> 42 cents</label><br>
<label><input type="radio" name="q43" value="3"> 49 cents</label><br>
<label><input type="radio" name="q43" value="4"> 56 cents</label>
</div>
</div>
<!-- Question 44 -->
<div class="question">
<p>34. An airplane was assessed at $4,800. The rate of taxation was $3 per $800. How much were the taxes on the airplane?</p>
<div class="options">
<label><input type="radio" name="q44" value="1"> $18</label><br>
<label><input type="radio" name="q44" value="2"> $17</label><br>
<label><input type="radio" name="q44" value="3"> $16</label><br>
<label><input type="radio" name="q44" value="4"> $20</label>
</div>
</div>
<!-- Question 45 -->
<div class="question">
<p>35. The perimeter of the square barracks is 140 feet. What is the length of each side?</p>
<div class="options">
<label><input type="radio" name="q45" value="1"> 25 feet</label><br>
<label><input type="radio" name="q45" value="2"> 45 feet</label><br>
<label><input type="radio" name="q45" value="3"> 15 feet</label><br>
<label><input type="radio" name="q45" value="4"> 35 feet</label>
</div>
</div>
<!-- Question 46 -->
<div class="question">
<p>36. How many cubic feet of gunpowder will fill a bin 11 feet long, 7 feet wide, and 6 feet high?</p>
<div class="options">
<label><input type="radio" name="q46" value="1"> 231</label><br>
<label><input type="radio" name="q46" value="2"> 83</label><br>
<label><input type="radio" name="q46" value="3"> 462</label><br>
<label><input type="radio" name="q46" value="4"> 662</label>
</div>
</div>
<!-- Question 47 -->
<div class="question">
<p>37. How many boxes?</p>
<div class="image-container">
<img src="assets/agct9.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q47" value="1"> 4</label><br>
<label><input type="radio" name="q47" value="2"> 5</label><br>
<label><input type="radio" name="q47" value="3"> 6</label><br>
<label><input type="radio" name="q47" value="4"> 7</label>
</div>
</div>
<!-- Question 48 -->
<div class="question">
<p>38. How many boxes?</p>
<div class="image-container">
<img src="assets/agct10.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q48" value="1"> 4</label><br>
<label><input type="radio" name="q48" value="2"> 10</label><br>
<label><input type="radio" name="q48" value="3"> 6</label><br>
<label><input type="radio" name="q48" value="4"> 8</label>
</div>
</div>
<!-- Question 49 -->
<div class="question">
<p>39. How many boxes?</p>
<div class="image-container">
<img src="assets/agct11.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q49" value="1"> 7</label><br>
<label><input type="radio" name="q49" value="2"> 10</label><br>
<label><input type="radio" name="q49" value="3"> 14</label><br>
<label><input type="radio" name="q49" value="4"> 12</label>
</div>
</div>
<!-- Question 50 -->
<div class="question">
<p>40. How many boxes?</p>
<div class="image-container">
<img src="assets/agct12.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q50" value="1"> 4</label><br>
<label><input type="radio" name="q50" value="2"> 3</label><br>
<label><input type="radio" name="q50" value="3"> 6</label><br>
<label><input type="radio" name="q50" value="4"> 5</label>
</div>
</div>
<!-- Question 51 -->
<div class="question">
<p>41. How many boxes?</p>
<div class="image-container">
<img src="assets/agct13.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q51" value="1"> 8</label><br>
<label><input type="radio" name="q51" value="2"> 9</label><br>
<label><input type="radio" name="q51" value="3"> 10</label><br>
<label><input type="radio" name="q51" value="4"> 11</label>
</div>
</div>
<!-- Question 52 -->
<div class="question">
<p>42. How many boxes?</p>
<div class="image-container">
<img src="assets/agct14.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q52" value="1"> 7</label><br>
<label><input type="radio" name="q52" value="2"> 6</label><br>
<label><input type="radio" name="q52" value="3"> 8</label><br>
<label><input type="radio" name="q52" value="4"> 9</label>
</div>
</div>
<!-- Question 53 -->
<div class="question">
<p>43. The fortress was ACCESSIBLE</p>
<div class="options">
<label><input type="radio" name="q53" value="1"> formidable</label><br>
<label><input type="radio" name="q53" value="2"> approachable</label><br>
<label><input type="radio" name="q53" value="3"> defensible</label><br>
<label><input type="radio" name="q53" value="4"> blockaded</label>
</div>
</div>
<!-- Question 54 -->
<div class="question">
<p>44. A good soldier is one without excessive EGOTISM</p>
<div class="options">
<label><input type="radio" name="q54" value="1"> weight</label><br>
<label><input type="radio" name="q54" value="2"> stature</label><br>
<label><input type="radio" name="q54" value="3"> stupidity</label><br>
<label><input type="radio" name="q54" value="4"> conceit</label>
</div>
</div>
<!-- Question 55 -->
<div class="question">
<p>45. A DETONATION was heard.</p>
<div class="options">
<label><input type="radio" name="q55" value="1"> crash</label><br>
<label><input type="radio" name="q55" value="2"> voice</label><br>
<label><input type="radio" name="q55" value="3"> explosion</label><br>
<label><input type="radio" name="q55" value="4"> wail</label>
</div>
</div>
<!-- Question 56 -->
<div class="question">
<p>46. The man was MANACLED and taken to the guardhouse</p>
<div class="options">
<label><input type="radio" name="q56" value="1"> captured</label><br>
<label><input type="radio" name="q56" value="2"> questioned</label><br>
<label><input type="radio" name="q56" value="3"> handcuffed</label><br>
<label><input type="radio" name="q56" value="4"> rebuked</label>
</div>
</div>
<!-- Question 57 -->
<div class="question">
<p>47. He was UNWAVERING in his loyalty</p>
<div class="options">
<label><input type="radio" name="q57" value="1"> fickle</label><br>
<label><input type="radio" name="q57" value="2"> mistaken</label><br>
<label><input type="radio" name="q57" value="3"> steadfast</label><br>
<label><input type="radio" name="q57" value="4"> correct</label>
</div>
</div>
<!-- Question 58 -->
<div class="question">
<p>48. It was the officer's PREROGATIVE to give orders.</p>
<div class="options">
<label><input type="radio" name="q58" value="1"> right</label><br>
<label><input type="radio" name="q58" value="2"> task</label><br>
<label><input type="radio" name="q58" value="3"> characteristic</label><br>
<label><input type="radio" name="q58" value="4"> habit</label>
</div>
</div>
<!-- Question 59 -->
<div class="question">
<p>49. The first regiment of Cavalry had 120 horses. The second regiment had only 70 percent as many. How many horses did the second regiment have?</p>
<div class="options">
<label><input type="radio" name="q59" value="1"> 96</label><br>
<label><input type="radio" name="q59" value="2"> 84</label><br>
<label><input type="radio" name="q59" value="3"> 75</label><br>
<label><input type="radio" name="q59" value="4"> 115</label>
</div>
</div>
<!-- Question 60 -->
<div class="question">
<p>50. Private Jones spent 1/2 of his allowance on stationery, 1/8 on tobacco, and 1/4 on recreation. He still had $6 left. How much did he have originally?</p>
<div class="options">
<label><input type="radio" name="q60" value="1"> $48</label><br>
<label><input type="radio" name="q60" value="2"> $54</label><br>
<label><input type="radio" name="q60" value="3"> $64</label><br>
<label><input type="radio" name="q60" value="4"> $72</label>
</div>
</div>
<!-- Question 61 -->
<div class="question">
<p>51. If 60 automatic rifles cost the same as 2 machine guns, how many automatic rifles can be bought for the price of 5 machine guns?</p>
<div class="options">
<label><input type="radio" name="q61" value="1"> 300</label><br>
<label><input type="radio" name="q61" value="2"> 180</label><br>
<label><input type="radio" name="q61" value="3"> 150</label><br>
<label><input type="radio" name="q61" value="4"> 120</label>
</div>
</div>
<!-- Question 62 -->
<div class="question">
<p>52. How many cubic feet of earth must be removed to form a trench 6 feet deep, 5 feet wide, and 200 feet long?</p>
<div class="options">
<label><input type="radio" name="q62" value="1"> 3,000</label><br>
<label><input type="radio" name="q62" value="2"> 6,000</label><br>
<label><input type="radio" name="q62" value="3"> 9,000</label><br>
<label><input type="radio" name="q62" value="4"> 12,000</label>
</div>
</div>
<!-- Question 63 -->
<div class="question">
<p>53. If a tank goes 150 feet in 10 seconds, how many feet does it go in 1/5 of a second?</p>
<div class="options">
<label><input type="radio" name="q63" value="1"> 3</label><br>
<label><input type="radio" name="q63" value="2"> 5</label><br>
<label><input type="radio" name="q63" value="3"> 6</label><br>
<label><input type="radio" name="q63" value="4"> 10</label>
</div>
</div>
<!-- Question 64 -->
<div class="question">
<p>54. If the concrete curbing and gutter on a street cost $0.65 per running foot, what is the cost for the curbing and gutter on both sides of a road 500 feet long through a camp?</p>
<div class="options">
<label><input type="radio" name="q64" value="1"> $775</label><br>
<label><input type="radio" name="q64" value="2"> $325</label><br>
<label><input type="radio" name="q64" value="3"> $650</label><br>
<label><input type="radio" name="q64" value="4"> $690</label>
</div>
</div>
<!-- Question 65 -->
<div class="question">
<p>55. How many boxes?</p>
<div class="image-container">
<img src="assets/agct15.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q65" value="1"> 7</label><br>
<label><input type="radio" name="q65" value="2"> 6</label><br>
<label><input type="radio" name="q65" value="3"> 5</label><br>
<label><input type="radio" name="q65" value="4"> 4</label>
</div>
</div>
<!-- Question 66 -->
<div class="question">
<p>56. How many boxes?</p>
<div class="image-container">
<img src="assets/agct16.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q66" value="1"> 12</label><br>
<label><input type="radio" name="q66" value="2"> 7</label><br>
<label><input type="radio" name="q66" value="3"> 9</label><br>
<label><input type="radio" name="q66" value="4"> 10</label>
</div>
</div>
<!-- Question 67 -->
<div class="question">
<p>57. How many boxes?</p>
<div class="image-container">
<img src="assets/agct17.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q67" value="1"> 11</label><br>
<label><input type="radio" name="q67" value="2"> 9</label><br>
<label><input type="radio" name="q67" value="3"> 15</label><br>
<label><input type="radio" name="q67" value="4"> 14</label>
</div>
</div>
<!-- Question 68 -->
<div class="question">
<p>58. How many boxes?</p>
<div class="image-container">
<img src="assets/agct18.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q68" value="1"> 5</label><br>
<label><input type="radio" name="q68" value="2"> 8</label><br>
<label><input type="radio" name="q68" value="3"> 6</label><br>
<label><input type="radio" name="q68" value="4"> 7</label>
</div>
</div>
<!-- Question 69 -->
<div class="question">
<p>59. How many boxes?</p>
<div class="image-container">
<img src="assets/agct19.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q69" value="1"> 4</label><br>
<label><input type="radio" name="q69" value="2"> 5</label><br>
<label><input type="radio" name="q69" value="3"> 6</label><br>
<label><input type="radio" name="q69" value="4"> 7</label>
</div>
</div>
<!-- Question 70 -->
<div class="question">
<p>60. How many boxes?</p>
<div class="image-container">
<img src="assets/agct20.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q70" value="1"> 8</label><br>
<label><input type="radio" name="q70" value="2"> 10</label><br>
<label><input type="radio" name="q70" value="3"> 9</label><br>
<label><input type="radio" name="q70" value="4"> 11</label>
</div>
</div>
<!-- Question 71 -->
<div class="question">
<p>61. The scout CACHED some food before he left</p>
<div class="options">
<label><input type="radio" name="q71" value="1"> ate</label><br>
<label><input type="radio" name="q71" value="2"> took</label><br>
<label><input type="radio" name="q71" value="3"> cooked</label><br>
<label><input type="radio" name="q71" value="4"> hid</label>
</div>
</div>
<!-- Question 72 -->
<div class="question">
<p>62. VISUAL defects are not common among soldiers</p>
<div class="options">
<label><input type="radio" name="q72" value="1"> hearing</label><br>
<label><input type="radio" name="q72" value="2"> observable</label><br>
<label><input type="radio" name="q72" value="3"> seeing</label><br>
<label><input type="radio" name="q72" value="4"> speech</label>
</div>
</div>
<!-- Question 73 -->
<div class="question">
<p>63. His high IDEALS made his friends like him.</p>
<div class="options">
<label><input type="radio" name="q73" value="1"> standards</label><br>
<label><input type="radio" name="q73" value="2"> skills</label><br>
<label><input type="radio" name="q73" value="3"> hopes</label><br>
<label><input type="radio" name="q73" value="4"> thoughts</label>
</div>
</div>
<!-- Question 74 -->
<div class="question">
<p>64. The bravery of every soldier was MANIFEST</p>
<div class="options">
<label><input type="radio" name="q74" value="1"> wise</label><br>
<label><input type="radio" name="q74" value="2"> evident</label><br>
<label><input type="radio" name="q74" value="3"> rewarded</label><br>
<label><input type="radio" name="q74" value="4"> fierce</label>
</div>
</div>
<!-- Question 75 -->
<div class="question">
<p>65. Smith received a COMMENDATION for his marksmanship</p>
<div class="options">
<label><input type="radio" name="q75" value="1"> compliment</label><br>
<label><input type="radio" name="q75" value="2"> reproof</label><br>
<label><input type="radio" name="q75" value="3"> punishment</label><br>
<label><input type="radio" name="q75" value="4"> grade</label>
</div>
</div>
<!-- Question 76 -->
<div class="question">
<p>66. The walls of the barracks were CALCIMINED</p>
<div class="options">
<label><input type="radio" name="q76" value="1"> whitewashed</label><br>
<label><input type="radio" name="q76" value="2"> painted</label><br>
<label><input type="radio" name="q76" value="3"> weather stripped</label><br>
<label><input type="radio" name="q76" value="4"> strengthened</label>
</div>
</div>
<!-- Question 77 -->
<div class="question">
<p>67. A commission house which had already supplied 2,000 barrels of apples to a cantonment delivered the remainder of its stock to 30 mess halls. Of this remainder each mess hall received 50 barrels. What was the total number of barrels supplied?</p>
<div class="options">
<label><input type="radio" name="q77" value="1"> 1,500</label><br>
<label><input type="radio" name="q77" value="2"> 3,500</label><br>
<label><input type="radio" name="q77" value="3"> 6,500</label><br>
<label><input type="radio" name="q77" value="4"> 10,000</label>
</div>
</div>
<!-- Question 78 -->
<div class="question">
<p>68. If a circle has 360 degrees, how many degrees of a circle graph would you shade to show that 20 percent of the men in the Army are officers.</p>
<div class="options">
<label><input type="radio" name="q78" value="1"> 20</label><br>
<label><input type="radio" name="q78" value="2"> 30</label><br>
<label><input type="radio" name="q78" value="3"> 36</label><br>
<label><input type="radio" name="q78" value="4"> 72</label>
</div>
</div>
<!-- Question 79 -->
<div class="question">
<p>69. A car which two officers bought cost $350. Officer A paid 3/7 of the amount. How much did Officer B pay?</p>
<div class="options">
<label><input type="radio" name="q79" value="1"> $150</label><br>
<label><input type="radio" name="q79" value="2"> $200</label><br>
<label><input type="radio" name="q79" value="3"> $300</label><br>
<label><input type="radio" name="q79" value="4"> $250</label>
</div>
</div>
<!-- Question 80 -->
<div class="question">
<p>70. A scout car goes 40 miles per hour on paved roads, and 25 miles per hour cross-country. How long will it take to cover 200 miles if 1/4 of the way is cross-country?</p>
<div class="options">
<label><input type="radio" name="q80" value="1"> 2 hours</label><br>
<label><input type="radio" name="q80" value="2"> 3¾ hours</label><br>
<label><input type="radio" name="q80" value="3"> 5¾ hours</label><br>
<label><input type="radio" name="q80" value="4"> 9 hours</label>
</div>
</div>
<!-- Question 81 -->
<div class="question">
<p>71. If a strip of cloth 30 inches long will shrink to 28 inches when washed, how many inches long will a 75-inch strip be after shrinking?</p>
<div class="options">
<label><input type="radio" name="q81" value="1"> 70</label><br>
<label><input type="radio" name="q81" value="2"> 71</label><br>
<label><input type="radio" name="q81" value="3"> 72</label><br>
<label><input type="radio" name="q81" value="4"> 73</label>
</div>
</div>
<!-- Question 82 -->
<div class="question">
<p>72. From four gun squads of 16 men each, 5/8 of the men in one squad are released, as are 1/2 of a second squad, 3/4 of a third squad, and 1/8 of the remaining squad. What fraction of the total number of men have been released?</p>
<div class="options">
<label><input type="radio" name="q82" value="1"> 1/2</label><br>
<label><input type="radio" name="q82" value="2"> 47/64</label><br>
<label><input type="radio" name="q82" value="3"> 17/32</label><br>
<label><input type="radio" name="q82" value="4"> 3/8</label>
</div>
</div>
<!-- Question 83 -->
<div class="question">
<p>73. How many boxes?</p>
<div class="image-container">
<img src="assets/agct21.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q83" value="1"> 9</label><br>
<label><input type="radio" name="q83" value="2"> 6</label><br>
<label><input type="radio" name="q83" value="3"> 7</label><br>
<label><input type="radio" name="q83" value="4"> 8</label>
</div>
</div>
<!-- Question 84 -->
<div class="question">
<p>74. How many boxes?</p>
<div class="image-container">
<img src="assets/agct22.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q84" value="1"> 5</label><br>
<label><input type="radio" name="q84" value="2"> 4</label><br>
<label><input type="radio" name="q84" value="3"> 6</label><br>
<label><input type="radio" name="q84" value="4"> 7</label>
</div>
</div>
<!-- Question 85 -->
<div class="question">
<p>75. How many boxes?</p>
<div class="image-container">
<img src="assets/agct23.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q85" value="1"> 7</label><br>
<label><input type="radio" name="q85" value="2"> 8</label><br>
<label><input type="radio" name="q85" value="3"> 9</label><br>
<label><input type="radio" name="q85" value="4"> 10</label>
</div>
</div>
<!-- Question 86 -->
<div class="question">
<p>76. How many boxes?</p>
<div class="image-container">
<img src="assets/agct24.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q86" value="1"> 8</label><br>
<label><input type="radio" name="q86" value="2"> 10</label><br>
<label><input type="radio" name="q86" value="3"> 12</label><br>
<label><input type="radio" name="q86" value="4"> 6</label>
</div>
</div>
<!-- Question 87 -->
<div class="question">
<p>77. How many boxes?</p>
<div class="image-container">
<img src="assets/agct25.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q87" value="1"> 20</label><br>
<label><input type="radio" name="q87" value="2"> 15</label><br>
<label><input type="radio" name="q87" value="3"> 25</label><br>
<label><input type="radio" name="q87" value="4"> 10</label>
</div>
</div>
<!-- Question 88 -->
<div class="question">
<p>78. How many boxes?</p>
<div class="image-container">
<img src="assets/agct26.jpg" alt="How many boxes?">
<div class="options">
<label><input type="radio" name="q88" value="1"> 50</label><br>
<label><input type="radio" name="q88" value="2"> 42</label><br>
<label><input type="radio" name="q88" value="3"> 48</label><br>
<label><input type="radio" name="q88" value="4"> 54</label>
</div>
</div>
<!-- Question 89 -->
<div class="question">
<p>79. The soldier was INHERENTLY suited to his duties.</p>
<div class="options">
<label><input type="radio" name="q89" value="1"> naturally</label><br>
<label><input type="radio" name="q89" value="2"> certainly</label><br>
<label><input type="radio" name="q89" value="3"> completely</label><br>
<label><input type="radio" name="q89" value="4"> externally</label>
</div>
</div>
<!-- Question 90 -->
<div class="question">
<p>80. The IMPACT of the bomb broke many windows.</p>
<div class="options">
<label><input type="radio" name="q90" value="1"> fragments</label><br>
<label><input type="radio" name="q90" value="2"> noise</label><br>
<label><input type="radio" name="q90" value="3"> striking</label><br>
<label><input type="radio" name="q90" value="4"> weight</label>
</div>
</div>
<!-- Question 91 -->
<div class="question">
<p>81. The duty was PRIMARILY a military one.</p>
<div class="options">
<label><input type="radio" name="q91" value="1"> chiefly</label><br>
<label><input type="radio" name="q91" value="2"> only</label><br>
<label><input type="radio" name="q91" value="3"> definitely</label><br>
<label><input type="radio" name="q91" value="4"> usually</label>
</div>
</div>
<!-- Question 92 -->
<div class="question">
<p>82. His ATTAINMENTS as a gunner were well known.</p>
<div class="options">
<label><input type="radio" name="q92" value="1"> duties</label><br>
<label><input type="radio" name="q92" value="2"> accomplishments</label><br>
<label><input type="radio" name="q92" value="3"> experiences</label><br>
<label><input type="radio" name="q92" value="4"> lessons</label>
</div>
</div>
<!-- Question 93 -->
<div class="question">
<p>83. His job was to SYNCRHONIZE the firing of the guns.</p>
<div class="options">
<label><input type="radio" name="q93" value="1"> count</label><br>
<label><input type="radio" name="q93" value="2"> coordinate</label><br>
<label><input type="radio" name="q93" value="3"> order</label><br>
<label><input type="radio" name="q93" value="4"> simplify</label>
</div>
</div>
<!-- Question 94 -->
<div class="question">
<p>84. The camp ABUTS ON the highway.</p>
<div class="options">
<label><input type="radio" name="q94" value="1"> opens up</label><br>
<label><input type="radio" name="q94" value="2"> borders on</label><br>
<label><input type="radio" name="q94" value="3"> ends on</label><br>
<label><input type="radio" name="q94" value="4"> is seen from</label>
</div>
</div>
<!-- Question 95 -->
<div class="question">
<p>85. At a certain Army post there are 2,160 men. Of these people 1/2 are in the Engineer school, 1/3 in the Chemical Warfare School, 1/9 in the Quartermaster School, and the rest in the Infantry School. How many men are there in the Infantry School?</p>
<div class="options">
<label><input type="radio" name="q95" value="1"> 160</label><br>
<label><input type="radio" name="q95" value="2"> 180</label><br>
<label><input type="radio" name="q95" value="3"> 120</label><br>
<label><input type="radio" name="q95" value="4"> 240</label>
</div>
</div>
<!-- Question 96 -->
<div class="question">
<p>86. If a scout car goes 300 feet in 15 seconds, how many feet does it go in 1/5 of a second?</p>
<div class="options">
<label><input type="radio" name="q96" value="1"> 4</label><br>
<label><input type="radio" name="q96" value="2"> 5</label><br>
<label><input type="radio" name="q96" value="3"> 6</label><br>
<label><input type="radio" name="q96" value="4"> 10</label>
</div>
</div>
<!-- Question 97 -->
<div class="question">
<p>87. In a certain Army post there are 10,000 men, 8 percent of whom are commissioned officers. Of the commissioned officers, 60 percent are regular officers, the rest reserve officers. How many reserve officers are there in the post?</p>
<div class="options">
<label><input type="radio" name="q97" value="1"> 600</label><br>
<label><input type="radio" name="q97" value="2"> 480</label><br>
<label><input type="radio" name="q97" value="3"> 320</label><br>
<label><input type="radio" name="q97" value="4"> 400</label>
</div>
</div>
<!-- Question 98 -->
<div class="question">
<p>88. How much would you have left if from 11 yards 2 feet 9 inches away you took away 7 yards 2 feet 11 inches? Note: 1 yard = 3 feet, 1 foot = 12 inch</p>
<div class="options">