-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
1376 lines (1297 loc) · 61.8 KB
/
index.php
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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SHS Academic Track Recommender System</title>
<link rel="shortcut icon" type="image/x-icon" href="images/SaTRSlogo.png" />
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" />
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="css/instructionPopup.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/popupFeedbackGSA.css">
</head>
<body>
<!-- header section starts -->
<header class="header">
<div id="menu-btn" class="fas fa-bars"></div>
<a href="home.php" class="logo">
<img src="images/SaTRSnav1.png" style="width: 20%">
<style>
@media(max-width:768px){
.header .logo img{
display: none;
}
}
</style>
</a>
<nav class="navbar">
<!-- <a href="home.php">HOME</a> -->
<a href="about.php">ABOUT</a>
<a href="tracks.php">STRANDS</a>
<a href="newinterest.php">ASSESSMENT</a>
<a href="faqs.php">FAQS</a>
</nav>
<!--<a href="index.html" class="logo" style="margin-right: 10%;"><i class="fas fa-shopping-cart"></i></a> -->
</header>
<!-- header section ends -->
<!-- pop up on screen reload -->
<div class="popup">
<button id="close">×</button>
<h1>Reminder</h1>
<p>1. Choose the best answer in each questions.</p>
<p>2. Do not refresh the page while answering.</p>
<p>3. Answer the test honestly for best result.</p>
<p>4. Do not rush, always take your time when answering.</p>
<a id="g-btn">Let's Go!</a>
</div>
<!-- pop up on screen reload -->
<!-- GSA questions -->
<div class="container">
<div class="jumbotron">
<img src="images/aptitude-test-1.webp" alt="">
<div class="caption">
<h1>General Scholastic Aptitude Test</h1>
<h4>Answer these questions to get advice about the Academic Track/ Strand you should pursue!</h4>
</div>
</div>
<br>
<!-- Start of questionnaire form -->
<form id="all-questions">
<div id="progress">
<span id="progress-value"><i class="fa fa-arrow-up" aria-hidden="true"></i></span>
</div>
<div class="container">
<div class="title" style="text-transform: none;">Fill out the following:
<br>
<div class="form-group col-lg-3" id="nameForm" style="display:inline-block; align-items: center">
<label for="name" class="prompt">Name</label><br>
<input type="text" class="form-control" id="name" style="height:25px; width: 200px; border-radius: 5px;" required>
</div>
<div class="form-group col-lg-3" id="dobForm" style="display:inline-block; margin: auto; align-items: center">
<label for="datePicker" class="prompt" style="text-transform: none;">Date of Birth</label><br>
<input type="date" class="form-control" style="height:25px; width: 200px; text-transform: none;border-radius: 5px;" id="datePicker" required>
</div>
<div class="form-group col-lg-3" id="genderForm">
<br>
<label for="gender" class="prompt">Gender</label><br>
<select id="gender" style="height:25px; width: 200px; text-transform: none;border-radius: 5px;" required>
<option disabled hidden selected>Select</option>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
</div>
<!-- </div>
</form> -->
</div>
</div>
<!-- VERBAL ABILITY -->
<div class="title">
<h3>Test I</h3>
</div>
<div class="radio">
<div class="single-question">
<h4 style="text-transform: none;">
Give the meaning of:</h4>
<p class="question-text">
1. Log</p>
<label>
<input type="radio" name="VAq1" value="0" checked> A. Charge in court ; indict</label>
<br>
<label>
<input type="radio" name="VAq1" value="1"> B. Record of a voyage ; record of daily activities</label>
<br>
<label>
<input type="radio" name="VAq1" value="0"> C. Talent ; inherent ability</label>
<br>
<label>
<input type="radio" name="VAq1" value="0"> D. Hardened ; unfeeling</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<h4 style="text-transform: none;">
Give the meaning of:</h4>
<p class="question-text">2. Rue </p>
<label>
<input type="radio" name="VAq2" value="0" checked> A. Settle comfortably</label>
<br>
<label>
<input type="radio" name="VAq2" value="0"> B. Unpredictable</label>
<br>
<label>
<input type="radio" name="VAq2" value="1"> C. To regret</label>
<br>
<label>
<input type="radio" name="VAq2" value="0"> D. Calmness of temperament</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<h4 style="text-transform: none;">
Give the meaning of:</h4>
<p class="question-text">3. Equable </p>
<label>
<input type="radio" name="VAq3" value="0" checked> A. Like an emperor; related to an empire</label>
<br>
<label>
<input type="radio" name="VAq3" value="0"> B. Having no connection with a given matter</label>
<br>
<label>
<input type="radio" name="VAq3" value="1"> C. Steady; unvarying; serene </label>
<br>
<label>
<input type="radio" name="VAq3" value="0"> D. Primitive; native; indigenous</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<h4 style="text-transform: none;">
Give the meaning of:</h4>
<p class="question-text">4. Disabuse </p>
<label>
<input type="radio" name="VAq4" value="0" checked> A. Motivate; active</label>
<br>
<label>
<input type="radio" name="VAq4" value="0"> B. Dress with vulgar finery</label>
<br>
<label>
<input type="radio" name="VAq4" value="0"> C. Attach to, append</label>
<br>
<label>
<input type="radio" name="VAq4" value="1"> D. To free from misconception</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<h4 style="text-transform: none;">
What is the synonyms for:</h4>
<p class="question-text">5. Affable </p>
<label>
<input type="radio" name="VAq5" value="1" checked> A. Friendly</label>
<br>
<label>
<input type="radio" name="VAq5" value="0"> B. Helpful</label>
<br>
<label>
<input type="radio" name="VAq5" value="0"> C. Cheerful</label>
<br>
<label>
<input type="radio" name="VAq5" value="0"> D. Support</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<h4 style="text-transform: none;">
What is the synonyms for:</h4>
<p class="question-text">6. Attachment </p>
<label>
<input type="radio" name="VAq6" value="1" checked> A. Appendage</label>
<br>
<label>
<input type="radio" name="VAq6" value="0"> B. Hard work</label>
<br>
<label>
<input type="radio" name="VAq6" value="0"> C. Not essential</label>
<br>
<label>
<input type="radio" name="VAq6" value="0"> D. Failure</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<h4 style="text-transform: none;">
What is the synonyms for:</h4>
<p class="question-text">7. Sagacity </p>
<label>
<input type="radio" name="VAq7" value="0" checked> A. Uniform</label>
<br>
<label>
<input type="radio" name="VAq7" value="0"> B. Morality</label>
<br>
<label>
<input type="radio" name="VAq7" value="0"> C. Uprightness</label>
<br>
<label>
<input type="radio" name="VAq7" value="1"> D. Wisdom</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<h4 style="text-transform: none;">
What is the antonyms for:</h4>
<p class="question-text">8. Far fetched </p>
<label>
<input type="radio" name="VAq8" value="0" checked> A. Laziness</label>
<br>
<label>
<input type="radio" name="VAq8" value="1"> B. Realistic</label>
<br>
<label>
<input type="radio" name="VAq8" value="0"> C. Firmness</label>
<br>
<label>
<input type="radio" name="VAq8" value="0"> D. Prevent</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<h4 style="text-transform: none;">
What is the antonyms for:</h4>
<p class="question-text">9. Sagacious </p>
<label>
<input type="radio" name="VAq9" value="1" checked> A. Foolish</label>
<br>
<label>
<input type="radio" name="VAq9" value="0"> B. Useful</label>
<br>
<label>
<input type="radio" name="VAq9" value="0"> C. Irritable</label>
<br>
<label>
<input type="radio" name="VAq9" value="0"> D. Speed</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<h4 style="text-transform: none;">
What is the antonyms for:</h4>
<p class="question-text">10. Engage </p>
<label>
<input type="radio" name="VAq10" value="0" checked> A. Irritable</label>
<br>
<label>
<input type="radio" name="VAq10" value="0"> B. Silly</label>
<br>
<label>
<input type="radio" name="VAq10" value="0"> C. Frankness</label>
<br>
<label>
<input type="radio" name="VAq10" value="1"> D. Abstain</label>
</div>
</div>
<!-- READING COMPREHENSION ABILITY -->
<div class="q">
<div class="title">
<h3>Test II</h3>
<div class="instruction">
<h4 style="text-transform: none; text-align:start;">
Directions: Read the following passages and answer the questions that follow:
<br><br>Passage No.1
<br>In 1893, Lokmanya Tilak converted the Ganapati festival into a public ceremony.
He campaigned (1)_____ the (2)_____ circulation of this public celebration throughout Maharashtra.
It was (3)_____ this festival that he could (4)_____ public (5)____ to the nationalist movement.
The desired (6)____ of this festival was further (7)____ by Shivaji festival.
It was inaugurated in honour of Chhatrapati Shivaji, the greatest Maratha king, in the (8)____ of several thousand people.
In the (9)____ the Marathas were (10)____ and this helped a lot in mounting an attack on British rule.
</h4>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">Question 1</p>
<label>
<input type="radio" name="RCAq1" value="1" checked> A. for</label>
<br>
<label>
<input type="radio" name="RCAq1" value="0"> B. towards</label>
<br>
<label>
<input type="radio" name="RCAq1" value="0"> C. something</label>
<br>
<label>
<input type="radio" name="RCAq1" value="0"> D. with</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">Question 2</p>
<label>
<input type="radio" name="RCAq2" value="0" checked> A. sudden</label>
<br>
<label>
<input type="radio" name="RCAq2" value="0"> B. slow</label>
<br>
<label>
<input type="radio" name="RCAq2" value="1"> C. wide</label>
<br>
<label>
<input type="radio" name="RCAq2" value="0"> D. early</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">Question 3 </p>
<label>
<input type="radio" name="RCAq3" value="0" checked> A. from</label>
<br>
<label>
<input type="radio" name="RCAq3" value="1"> B. through</label>
<br>
<label>
<input type="radio" name="RCAq3" value="0"> C. before</label>
<br>
<label>
<input type="radio" name="RCAq3" value="0"> D. indeed</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">Question 4 </p>
<label>
<input type="radio" name="RCAq4" value="0" checked> A. advise</label>
<br>
<label>
<input type="radio" name="RCAq4" value="0"> B. demand</label>
<br>
<label>
<input type="radio" name="RCAq4" value="0"> C. control</label>
<br>
<label>
<input type="radio" name="RCAq4" value="1"> D. mobilize</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">Question 5 </p>
<label>
<input type="radio" name="RCAq5" value="0" checked> A. places</label>
<br>
<label>
<input type="radio" name="RCAq5" value="1"> B. support</label>
<br>
<label>
<input type="radio" name="RCAq5" value="0"> C. festivals</label>
<br>
<label>
<input type="radio" name="RCAq5" value="0"> D. celebrations</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">Question 6 </p>
<label>
<input type="radio" name="RCAq6" value="1" checked> A. impact</label>
<br>
<label>
<input type="radio" name="RCAq6" value="0"> B. importance</label>
<br>
<label>
<input type="radio" name="RCAq6" value="0"> C. strategy</label>
<br>
<label>
<input type="radio" name="RCAq6" value="0"> D. publicity</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">Question 7 </p>
<label>
<input type="radio" name="RCAq7" value="0" checked> A. decided</label>
<br>
<label>
<input type="radio" name="RCAq7" value="1"> B. reinforced</label>
<br>
<label>
<input type="radio" name="RCAq7" value="0"> C. displayed</label>
<br>
<label>
<input type="radio" name="RCAq7" value="0"> D. generated</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">Question 8 </p>
<label>
<input type="radio" name="RCAq8" value="0" checked> A. protest</label>
<br>
<label>
<input type="radio" name="RCAq8" value="0"> B. honour</label>
<br>
<label>
<input type="radio" name="RCAq8" value="0"> C. service</label>
<br>
<label>
<input type="radio" name="RCAq8" value="1"> D. presence</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">Question 9 </p>
<label>
<input type="radio" name="RCAq9" value="0" checked> A. fight</label>
<br>
<label>
<input type="radio" name="RCAq9" value="0"> B. activity</label>
<br>
<label>
<input type="radio" name="RCAq9" value="0"> C. process</label>
<br>
<label>
<input type="radio" name="RCAq9" value="1"> D. beginning</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">Question 10 </p>
<label>
<input type="radio" name="RCAq10" value="0" checked> A. absent</label>
<br>
<label>
<input type="radio" name="RCAq10" value="0"> B. defeated</label>
<br>
<label>
<input type="radio" name="RCAq10" value="1"> C. neglected</label>
<br>
<label>
<input type="radio" name="RCAq10" value="0"> D. glorified</label>
</div>
</div>
</div>
<!-- SCIENTIFIC ABILITY -->
<div class="title">
<h3>Test III</h3>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">1. What is the name of the substance that gives skin and hair its pigment?</p>
<label>
<input type="radio" name="SAq1" value="0" checked> A. Roots</label>
<br>
<label>
<input type="radio" name="SAq1" value="0"> B. Blood</label>
<br>
<label>
<input type="radio" name="SAq1" value="1"> C. Melanin</label>
<br>
<label>
<input type="radio" name="SAq1" value="0"> D. Tissue</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">2. The colored part of the human eye that controls how much light passes through the pupil is called the? </p>
<label>
<input type="radio" name="SAq2" value="0" checked> A. Pupil</label>
<br>
<label>
<input type="radio" name="SAq2" value="1"> B. Iris</label>
<br>
<label>
<input type="radio" name="SAq2" value="0"> C. Cornea</label>
<br>
<label>
<input type="radio" name="SAq2" value="0"> D. Lens</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">3. What is the hottest planet in our solar system? </p>
<label>
<input type="radio" name="SAq3" value="0" checked> A. Mercury</label>
<br>
<label>
<input type="radio" name="SAq3" value="0"> B. Earth</label>
<br>
<label>
<input type="radio" name="SAq3" value="0"> C. Mars</label>
<br>
<label>
<input type="radio" name="SAq3" value="1"> D. Venus</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">4. What is the name of Saturns largest moon? </p>
<label>
<input type="radio" name="SAq4" value="0" checked> A. Giant</label>
<br>
<label>
<input type="radio" name="SAq4" value="0"> B. Sputnik</label>
<br>
<label>
<input type="radio" name="SAq4" value="1"> C. Titan</label>
<br>
<label>
<input type="radio" name="SAq4" value="0"> D. Mars</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">5. What is the first element on the periodic table? </p>
<label>
<input type="radio" name="SAq5" value="0" checked> A. Gold</label>
<br>
<label>
<input type="radio" name="SAq5" value="0"> B. Oxygen</label>
<br>
<label>
<input type="radio" name="SAq5" value="1"> C. Hydrogen</label>
<br>
<label>
<input type="radio" name="SAq5" value="0"> D. Atom</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">6. K is the chemical symbol for which element? </p>
<label>
<input type="radio" name="SAq6" value="0" checked> A. Sodium</label>
<br>
<label>
<input type="radio" name="SAq6" value="0"> B. Calcium</label>
<br>
<label>
<input type="radio" name="SAq6" value="0"> C. Carbon</label>
<br>
<label>
<input type="radio" name="SAq6" value="1"> D. Potassium</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">7. The wire inside an electric bulb is known as the what? </p>
<label>
<input type="radio" name="SAq7" value="1" checked> A. Filament</label>
<br>
<label>
<input type="radio" name="SAq7" value="0"> B. Contact wire</label>
<br>
<label>
<input type="radio" name="SAq7" value="0"> C. Support Wire</label>
<br>
<label>
<input type="radio" name="SAq7" value="0"> D. Base Contact Wire</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">8. Electric resistance is typically measured in what units? </p>
<label>
<input type="radio" name="SAq8" value="1" checked> A. Ohms</label>
<br>
<label>
<input type="radio" name="SAq8" value="0"> B. Ampere</label>
<br>
<label>
<input type="radio" name="SAq8" value="0"> C. Volt</label>
<br>
<label>
<input type="radio" name="SAq8" value="0"> D. None of the Above</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">9. Conductors have a high or low resistance? </p>
<label>
<input type="radio" name="SAq9" value="0" checked> A. High</label>
<br>
<label>
<input type="radio" name="SAq9" value="0"> B. Low</label>
<br>
<label>
<input type="radio" name="SAq9" value="0"> C. Very high</label>
<br>
<label>
<input type="radio" name="SAq9" value="1"> D. Very low</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">10. Water is made up of what two elements? </p>
<label>
<input type="radio" name="SAq10" value="1" checked> A. Hydrogen and oxygen </label>
<br>
<label>
<input type="radio" name="SAq10" value="0"> B. Oxygen and nitrogen</label>
<br>
<label>
<input type="radio" name="SAq10" value="0"> C. Hydrogen and nitrogen</label>
<br>
<label>
<input type="radio" name="SAq10" value="0"> D. Oxygen and Carbon Dioxide</label>
</div>
</div>
<!-- MATHEMATICAL ABILITY -->
<div class="title">
<h3>Test IV</h3>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">1. Solve the Equation:
<br>17 + ( - 8 ) = ?</p>
<label>
<input type="radio" name="MAq1" value="0" checked> A. 5</label>
<br>
<label>
<input type="radio" name="MAq1" value="0"> B. 3</label>
<br>
<label>
<input type="radio" name="MAq1" value="1"> C. 9</label>
<br>
<label>
<input type="radio" name="MAq1" value="0"> D. 6</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">2. Solve the Equation:
<br>-4k x 5 </p>
<label>
<input type="radio" name="MAq2" value="0" checked> A. -17k</label>
<br>
<label>
<input type="radio" name="MAq2" value="1"> B. -20k</label>
<br>
<label>
<input type="radio" name="MAq2" value="0"> C. -26k</label>
<br>
<label>
<input type="radio" name="MAq2" value="0"> D. -18k</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">3. Solve the Equation:
<br>– 11a x 5 </p>
<label>
<input type="radio" name="MAq3" value="0" checked> A. -54a</label>
<br>
<label>
<input type="radio" name="MAq3" value="0"> B. -61a</label>
<br>
<label>
<input type="radio" name="MAq3" value="1"> C. -55a</label>
<br>
<label>
<input type="radio" name="MAq3" value="0"> D. -49a</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">4. The price of the carpet is 240$. After the price hike, the carpet cost 420$. <br> By how many percent was the price of the carpet increased? </p>
<label>
<input type="radio" name="MAq4" value="0" checked> A. 78%</label>
<br>
<label>
<input type="radio" name="MAq4" value="1"> B. 75%</label>
<br>
<label>
<input type="radio" name="MAq4" value="0"> C. 73%</label>
<br>
<label>
<input type="radio" name="MAq4" value="0"> D. 68%</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">5. Complete the geometric sequence:
<br>6, 18, 54, x </p>
<label>
<input type="radio" name="MAq5" value="0" checked> A. x = 65</label>
<br>
<label>
<input type="radio" name="MAq5" value="0"> B. x = 146</label>
<br>
<label>
<input type="radio" name="MAq5" value="1"> C. x = 162</label>
<br>
<label>
<input type="radio" name="MAq5" value="0"> D. x = 73</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">6. Calculate the arithmetic mean of the following numbers:
<br>2, 4, 10, 8, 5, 7 </p>
<label>
<input type="radio" name="MAq6" value="0" checked> A. 4</label>
<br>
<label>
<input type="radio" name="MAq6" value="0"> B. 9</label>
<br>
<label>
<input type="radio" name="MAq6" value="0"> C. 7</label>
<br>
<label>
<input type="radio" name="MAq6" value="1"> D. 6</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">7. Find the median of the following numbers:
<br>4, 6, 11, 11, 8, 6, 10 </p>
<label>
<input type="radio" name="MAq7" value="0" checked> A. 6</label>
<br>
<label>
<input type="radio" name="MAq7" value="0"> B. 9</label>
<br>
<label>
<input type="radio" name="MAq7" value="0"> C. 7</label>
<br>
<label>
<input type="radio" name="MAq7" value="1"> D. 8</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">8. Calculate:
<br>3 x ( 3 + 4 ) x 2 </p>
<label>
<input type="radio" name="MAq8" value="1" checked> A. 42</label>
<br>
<label>
<input type="radio" name="MAq8" value="0"> B. 48</label>
<br>
<label>
<input type="radio" name="MAq8" value="0"> C. 34</label>
<br>
<label>
<input type="radio" name="MAq8" value="0"> D. 61</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">9. Book price after price reduction by 70% is 84$. How much have the book costed before the discount? </p>
<label>
<input type="radio" name="MAq9" value="0" checked> A. 420$</label>
<br>
<label>
<input type="radio" name="MAq9" value="0"> B. 210$</label>
<br>
<label>
<input type="radio" name="MAq9" value="1"> C. 280$</label>
<br>
<label>
<input type="radio" name="MAq9" value="0"> D. 168$</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">10. The laptop cost 1000$ before the discount, and 320$ after the discount. <br>How many percent the price of the laptop was reduced? </p>
<label>
<input type="radio" name="MAq10" value="0" checked> A. 62%</label>
<br>
<label>
<input type="radio" name="MAq10" value="0"> B. 65%</label>
<br>
<label>
<input type="radio" name="MAq10" value="1"> C. 68%</label>
<br>
<label>
<input type="radio" name="MAq10" value="0"> D. 73%</label>
</div>
</div>
<!-- LOGICAL REASONING ABILITY -->
<div class="title">
<h3>Test V</h3>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">1. Arrange the given words in Alphabetical Order and choose the one that comes first.</p>
<label>
<input type="radio" name="LRAq1" value="0" checked> A. Wasp</label>
<br>
<label>
<input type="radio" name="LRAq1" value="0"> B. Waste</label>
<br>
<label>
<input type="radio" name="LRAq1" value="1"> C. War</label>
<br>
<label>
<input type="radio" name="LRAq1" value="0"> D. Wrinkle</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">2. Arrange the given words in Alphabetical Order and choose the one that comes first. </p>
<label>
<input type="radio" name="LRAq2" value="1" checked> A. Science</label>
<br>
<label>
<input type="radio" name="LRAq2" value="0"> B. Scripture</label>
<br>
<label>
<input type="radio" name="LRAq2" value="0"> C. Script</label>
<br>
<label>
<input type="radio" name="LRAq2" value="0"> D. Scramble</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">
ANALOGY
<br>Complete the analogous pair
<br>3. Moon : Satellite : : Earth : ?
</p>
<label>
<input type="radio" name="LRAq3" value="0" checked> A. Sun</label>
<br>
<label>
<input type="radio" name="LRAq3" value="1"> B. Planet</label>
<br>
<label>
<input type="radio" name="LRAq3" value="0"> C. Solar System</label>
<br>
<label>
<input type="radio" name="LRAq3" value="0"> D. Asteroid</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">
ANALOGY
<br>Complete the analogous pair
<br>4. Forecast: Future : : Regret : ? </p>
<label>
<input type="radio" name="LRAq4" value="0" checked> A. Present</label>
<br>
<label>
<input type="radio" name="LRAq4" value="0"> B. Atone</label>
<br>
<label>
<input type="radio" name="LRAq4" value="1"> C. Past</label>
<br>
<label>
<input type="radio" name="LRAq4" value="0"> D. Sins</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">
ARITHMETIC SIGNS
<br>5. if 12 * 7 = 408 , 9 * 8 = 207 then 13 * 7 = ?
</p>
<label>
<input type="radio" name="LRAq5" value="1" checked> A. 190</label>
<br>
<label>
<input type="radio" name="LRAq5" value="0"> B. 91</label>
<br>
<label>
<input type="radio" name="LRAq5" value="0"> C. 901</label>
<br>
<label>
<input type="radio" name="LRAq5" value="0"> D. 109</label>
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">
Progressive Series:
<br>Study each set of figure then select the figure among the options that comes next in the series.
<br><br>
6. <img src="images/Logical Reasoning Test/1/item 1.png"></p>
<br>
<label>
<input type="radio" name="LRAq6" value="0" checked> A. </label>
<img src="images/Logical Reasoning Test/1/1a.png">
<label>
<input type="radio" name="LRAq6" value="1"> B. </label>
<img src="images/Logical Reasoning Test/1/1b.png">
<br>
<label>
<input type="radio" name="LRAq6" value="0"> C. </label>
<img src="images/Logical Reasoning Test/1/1c.png">
<label>
<input type="radio" name="LRAq6" value="0"> D. </label>
<img src="images/Logical Reasoning Test/1/1d.png">
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">
7. <img src="images/Logical Reasoning Test/2/item 2.png"></p>
<br>
<label>
<input type="radio" name="LRAq7" value="0" checked> A. </label>
<img src="images/Logical Reasoning Test/2/2a.png">
<label>
<input type="radio" name="LRAq7" value="1"> B. </label>
<img src="images/Logical Reasoning Test/2/2b.png">
<br>
<label>
<input type="radio" name="LRAq7" value="0"> C. </label>
<img src="images/Logical Reasoning Test/2/2c.png">
<label>
<input type="radio" name="LRAq7" value="0"> D. </label>
<img src="images/Logical Reasoning Test/2/2d.png">
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">
8. <img src="images/Logical Reasoning Test/3/item 3.png"></p>
<br>
<label>
<input type="radio" name="LRAq8" value="0" checked> A. </label>
<img src="images/Logical Reasoning Test/3/3a.png">
<label>
<input type="radio" name="LRAq8" value="0"> B. </label>
<img src="images/Logical Reasoning Test/3/3b.png">
<br>
<label>
<input type="radio" name="LRAq8" value="1"> C. </label>
<img src="images/Logical Reasoning Test/3/3c.png">
<label>
<input type="radio" name="LRAq8" value="0"> D. </label>
<img src="images/Logical Reasoning Test/3/3d.png">
</div>
</div>
<div class="radio">
<div class="single-question">
<p class="question-text">
9. <img src="images/Logical Reasoning Test/4/item 4.png"></p>
<br>
<label>
<input type="radio" name="LRAq9" value="0" checked> A. </label>
<img src="images/Logical Reasoning Test/4/4a.png">
<label>
<input type="radio" name="LRAq9" value="0"> B. </label>
<img src="images/Logical Reasoning Test/4/4b.png">
<br>
<label>
<input type="radio" name="LRAq9" value="1"> C. </label>
<img src="images/Logical Reasoning Test/4/4c.png">
<label>
<input type="radio" name="LRAq9" value="0"> D. </label>