-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
982 lines (877 loc) · 53.3 KB
/
index.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
<!doctype html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Feedback type 02 Website</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Your file css -->
<link rel="stylesheet" href="css/custom.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container" style="font-family: Arial, Helvetica, sans-serif;">
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<h2>Metrology & Subtractive Process – Test by Molina, S.</h2>
<h5>The purpose of this test is to test participants on basic concepts about instruments,
gauge interpretation, cutting tooling and blueprint reading. In various venues, engineering
students as well as PE’s, should be able to interpretate both concepts to understand how a
process could be properly and accurately controlled. Metrology is “the science of measurement,
embracing both experimental and theoretical determinations at any level of uncertainty in any
field of science and technology” (BIPM,2004). Subtractive Processes are very widely used in
manufacturing, in which material (usually metal) is removed from a crudely-shape initial part
(perhaps a bar or slab, or a forging or casting with a more complex shape) to achieve the final
shape and dimensions. (Tribology Second Ed, 2017). This is also known as Machining. </h5></br>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<h3>Test Questions (P1)</h3>
<img src="images/Picture1.jpg" width="446" height="149">
<div><h4>Q3) What is the name of this gauge?</h4></div>
<input type="radio" name="answers" value="1" /> A. Dial Caliper</br>
<input type="radio" name="answers" value="2" /> B. Vernier Caliper</br>
<input type="radio" name="answers" value="3" /> C. Digital Caliper</br>
<input type="radio" name="answers" value="4" /> D. None of the answers are the correct name of the measuring gauges</br>
<br>
<div id="Answers1" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="Answers2" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="Answers3" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="Answers4" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<h3>BT – Measurement Reading</h3>
<div><h4>Q6) What is the most common error in measurements while using your naked eye?</h4></div>
<input type="radio" name="answers1" value="1" /> A. Parallax Error</br>
<input type="radio" name="answers1" value="2" /> B. Eye Error</br>
<input type="radio" name="answers1" value="3" /> C. Common Error</br>
<input type="radio" name="answers1" value="4" /> D. Free Error</br>
<br>
<div id="Answers11" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="Answers12" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="Answers13" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="Answers14" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<div><h4>Q7) What is precision?</h4></div>
<input type="radio" name="answersQ7" value="1" /> A. It is the difference in the average of the measurements
made by different people using the same instrument when measuring the identical characteristic on the same part</br>
<input type="radio" name="answersQ7" value="2" /> B. It is the variation between successive measurements of the same part,
characteristic, by the same person using the same gage.</br>
<input type="radio" name="answersQ7" value="3" /> C. It is the smallest change that can be measured.</br>
<input type="radio" name="answersQ7" value="4" /> D. It is how close a reported measurement is to the true value being measured.</br>
<input type="radio" name="answersQ7" value="5" /> E. It is the degree to which an instrument or process will repeat the same value.</br>
<br>
<div id="AnswersQ71" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ72" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ73" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ74" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ75" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<div><h4>Q8) What is Accuracy?</h4></div>
<input type="radio" name="answersQ8" value="1" /> A. It is the difference in the average of the measurements made by
different people using the same instrument when measuring the identical characteristic on the same part</br>
<input type="radio" name="answersQ8" value="2" /> B. It is the variation between successive measurements
of the same part, characteristic, by the same person using the same gage.</br>
<input type="radio" name="answersQ8" value="3" /> C. It is the smallest change that can be measured.</br>
<input type="radio" name="answersQ8" value="4" /> D. It is how close a reported measurement is to the true value being measured.</br>
<input type="radio" name="answersQ8" value="5" /> E. It is the degree to which an instrument or process will repeat the same value.</br>
<br>
<div id="AnswersQ81" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ82" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ83" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ84" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ85" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<div><h4>Q9) What is Resolution?</h4></div>
<input type="radio" name="answersQ9" value="1"/> A. It is the difference in the average of the measurements
made by different people using the same instrument when measuring the identical characteristic on the same part</br>
<input type="radio" name="answersQ9" value="2"/> B. It is the variation between successive measurements of the same part,
characteristic, by the same person using the same gage.</br>
<input type="radio" name="answersQ9" value="3"/> C. It is the smallest change that can be measured.</br>
<input type="radio" name="answersQ9" value="4"/> D. It is how close a reported measurement is to the true value being measured.</br>
<input type="radio" name="answersQ9" value="5"/> E. It is the degree to which an instrument or process will repeat the same value.</br>
<br>
<div id="AnswersQ91" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ92" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ93" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ94" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ95" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<div><h4>Q10) What is repeatability?</h4></div>
<input type="radio" name="answersQ10" value="1"/> A. It is the difference in the average of the measurements
made by different people using the same instrument when measuring the identical characteristic on the same part</br>
<input type="radio" name="answersQ10" value="2"/> B. It is the variation between successive measurements of the same part,
characteristic, by the same person using the same gage.</br>
<input type="radio" name="answersQ10" value="3"/> C. It is the smallest change that can be measured.</br>
<input type="radio" name="answersQ10" value="4"/> D. It is how close a reported measurement is to the true value being measured.</br>
<input type="radio" name="answersQ10" value="5"/> E. It is the degree to which an instrument or process will repeat the same value.</br>
<br>
<div id="AnswersQ101" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ102" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ103" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ104" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ105" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<div><h4>Q11) What is reproducibility?</h4></div>
<input type="radio" name="answersQ11" value="1"/> A. It is the difference in the average of the measurements
made by different people using the same instrument when measuring the identical characteristic on the same part</br>
<input type="radio" name="answersQ11" value="2"/> B. It is the variation between successive measurements of the same part,
characteristic, by the same person using the same gage.</br>
<input type="radio" name="answersQ11" value="3"/> C. It is the smallest change that can be measured.</br>
<input type="radio" name="answersQ11" value="4"/> D. It is how close a reported measurement is to the true value being measured.</br>
<input type="radio" name="answersQ11" value="5"/> E. It is the degree to which an instrument or process will repeat the same value.</br>
<br>
<div id="AnswersQ111" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ112" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ113" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ114" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ115" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<div><h4>Q13) An isometric view in a drawing is drawn by lines that follow an horizontal angle of______?</h4></div>
<input type="radio" name="answersQ13" value="1"/> A. 30 Degrees</br>
<input type="radio" name="answersQ13" value="2"/> B. 35 Degrees</br>
<input type="radio" name="answersQ13" value="3"/> C. 40 Degrees</br>
<input type="radio" name="answersQ13" value="4"/> D. 45 Degrees</br>
<br>
<div id="AnswersQ131" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ132" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ133" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ134" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<h3>T – Tooling</h3>
<div><h4>Q18) What is the function of an endmill?</h4></div>
<input type="radio" name="answersQ18" value="1"/> A. It locates a specific distance on the edge of a machine part.</br>
<input type="radio" name="answersQ18" value="2"/> B. It is designed to plunge vertically into material.</br>
<input type="radio" name="answersQ18" value="3"/> C. It enlarges and finishes to accurate dimensions holes that have been drilled, bored, or cored.</br>
<input type="radio" name="answersQ18" value="4"/> D. It is designed for horizontal cutting material.</br>
<br>
<div id="AnswersQ181" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ182" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ183" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ184" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<div><h4>Q19) What is the function of a Drill Bit?</h4></div>
<input type="radio" name="answersQ19" value="1"/> A. It locates a specific distance on the edge of a machine part.</br>
<input type="radio" name="answersQ19" value="2"/> B. It is designed to plunge vertically into material.</br>
<input type="radio" name="answersQ19" value="3"/> C. It enlarges and finishes to accurate dimensions holes that have been drilled, bored, or cored.</br>
<input type="radio" name="answersQ19" value="4"/> D. It is designed for horizontal cutting material.</br>
<br>
<div id="AnswersQ191" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ192" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ193" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ194" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<div><h4>Q20) What is the function of a Reamer?</h4></div>
<input type="radio" name="answersQ20" value="1"/> A. It locates a specific distance on the edge of a machine part.</br>
<input type="radio" name="answersQ20" value="2"/> B. It is designed to plunge vertically into material.</br>
<input type="radio" name="answersQ20" value="3"/> C. It enlarges and finishes to accurate dimensions holes that have been drilled, bored, or cored.</br>
<input type="radio" name="answersQ20" value="4"/> D. It is designed for horizontal cutting material.</br>
<br>
<div id="AnswersQ201" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ202" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ203" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ204" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<h3>Test Questions (P2)</h3>
<h5>IT – Instruments & Measurement Reading</h5></br>
<h4>By looking at the infographic on the left, answer the following 10 questions:</h4>
<img src="images/Picture2.png" width="316" height="408"></br></br>
<h4>Q22) What instrument will help you measure a wider range of parts?</h4>
<input type="radio" name="answersQ22" value="1"/> A. Caliper</br>
<input type="radio" name="answersQ22" value="2"/> B. Micrometer</br>
<input type="radio" name="answersQ22" value="3"/> C. Coordinate Measuring Machine (CMM)</br>
<input type="radio" name="answersQ22" value="4"/> D. Measuring Tape</br>
<br>
<div id="AnswersQ221" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ222" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ223" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ224" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<h4>Q23) What instrument could have a higher sell price?</h4>
<input type="radio" name="answersQ23" value="1"/> A. Caliper</br>
<input type="radio" name="answersQ23" value="2"/> B. Micrometer</br>
<input type="radio" name="answersQ23" value="3"/> C. Coordinate Measuring Machine (CMM)</br>
<input type="radio" name="answersQ23" value="4"/> D. Measuring Tape</br>
<br>
<div id="AnswersQ231" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ232" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ233" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ234" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<h4>Q26) According to their mechanism, which instrument is more accurate when measuring parts?</h4>
<input type="radio" name="answersQ26" value="1"/> A. Caliper</br>
<input type="radio" name="answersQ26" value="2"/> B. Micrometer</br>
<input type="radio" name="answersQ26" value="3"/> C. Coordinate Measuring Machine (CMM)</br>
<input type="radio" name="answersQ26" value="4"/> D. Measuring Tape</br>
<br>
<div id="AnswersQ261" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ262" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ263" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ264" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<h4>Q27) According to their mechanism, which instrument would be faster when measuring parts?</h4>
<input type="radio" name="answersQ27" value="1"/> A. Caliper</br>
<input type="radio" name="answersQ27" value="2"/> B. Micrometer</br>
<input type="radio" name="answersQ27" value="3"/> C. Coordinate Measuring Machine (CMM)</br>
<input type="radio" name="answersQ27" value="4"/> D. Measuring Tape</br>
<br>
<div id="AnswersQ271" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ272" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ273" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ274" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<h4>Q28) What type of Caliper is being used on the infographic?</h4>
<input type="radio" name="answersQ28" value="1"/> A. Vernier Caliper</br>
<input type="radio" name="answersQ28" value="2"/> B. Dial Caliper</br>
<input type="radio" name="answersQ28" value="3"/> C. Digital Caliper</br>
<input type="radio" name="answersQ28" value="4"/> D. Caliper</br>
<br>
<div id="AnswersQ281" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ282" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ283" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ284" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<h4>Q29) What type of micrometer is being used?</h4>
<input type="radio" name="answersQ29" value="1"/> A. Inside Micrometer</br>
<input type="radio" name="answersQ29" value="2"/> B. Outside Micrometer</br>
<input type="radio" name="answersQ29" value="3"/> C. Rod Micrometer</br>
<input type="radio" name="answersQ29" value="4"/> D. Depth Micrometer</br>
<br>
<div id="AnswersQ291" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ292" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ293" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ294" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<h4>Q30) What are the units of both instruments? (Explain your answer)</h4>
<input type="radio" name="answersQ30" value="1"/> A. Millimeters</br>
<input type="radio" name="answersQ30" value="2"/> B. Inches</br>
<input type="radio" name="answersQ30" value="3"/> C. Dual Dimensions</br>
<input type="radio" name="answersQ30" value="4"/> D. Not specified</br>
<br>
<div id="AnswersQ301" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ302" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ303" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ304" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<h4>Q34) What is a bilateral dimension?</h4>
<input type="radio" name="answersQ34" value="1"/> A. The variation from the true profile is permitted more in one direction than the other.</br>
<input type="radio" name="answersQ34" value="2"/> B. The variation from the true profile is permitted in one direction only.</br>
<input type="radio" name="answersQ34" value="3"/> C. The variation from the true profile is permitted equally in both directions.</br>
<input type="radio" name="answersQ34" value="4"/> D. None of the Answers is correct</br>
<br>
<div id="AnswersQ341" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ342" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ343" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ344" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<h4>Q35) What is a unilateral dimension?</h4>
<input type="radio" name="answersQ35" value="1"/> A. The variation from the true profile is permitted more in one direction than the other.</br>
<input type="radio" name="answersQ35" value="2"/> B. The variation from the true profile is permitted in one direction only.</br>
<input type="radio" name="answersQ35" value="3"/> C. The variation from the true profile is permitted equally in both directions.</br>
<input type="radio" name="answersQ35" value="4"/> D. None of the Answers is correct</br>
<br>
<div id="AnswersQ351" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ352" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ353" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ354" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<h3>BT – Tooling</h3>
<h4>Q37) What type of operations can a lathe perform?</h4>
<div class="question37">
<input class="answersQ371" type="checkbox" name="answersQ37" value="1"/> A. Sanding<br/>
<input class="answersQ372" type="checkbox" name="answersQ37" value="2"/> B. Knurling<br/>
<input class="answersQ373" type="checkbox" name="answersQ37" value="3"/> C. Welding<br/>
<input class="answersQ374" type="checkbox" name="answersQ37" value="4"/> D. Cutting<br/>
<input class="answersQ375" type="checkbox" name="answersQ37" value="5"/> E. Drilling<br/>
<input class="answersQ376" type="checkbox" name="answersQ37" value="6"/> F. Extruding<br/>
<input class="answersQ377" type="checkbox" name="answersQ37" value="7"/> G. Bending<br/>
</div>
<br>
<div id="AnswersQ371" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ372" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ373" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ374" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ375" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ376" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ377" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<h4>Q39) How many axis does a manual milling machine have?</h4>
<input type="radio" name="answersQ39" value="1"/> A. Two Axis</br>
<input type="radio" name="answersQ39" value="2"/> B. Three Axis</br>
<input type="radio" name="answersQ39" value="3"/> C. Five Axis</br>
<input type="radio" name="answersQ39" value="4"/> D. Six Axis</br>
<br>
<div id="AnswersQ391" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ392" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ393" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ394" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<h4>Q40) How many axis does a manual lathe machine have?</h4>
<input type="radio" name="answersQ40" value="1"/> A. Two Axis</br>
<input type="radio" name="answersQ40" value="2"/> B. Three Axis</br>
<input type="radio" name="answersQ40" value="3"/> C. Five Axis</br>
<input type="radio" name="answersQ40" value="4"/> D. Six Axis</br>
<br>
<div id="AnswersQ401" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ402" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ403" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ404" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-4 col-sm-offset-2">
<div style="font-size: 16px;">
<h4>Q41) What is the name of this tool?</h4>
<input type="radio" name="answersQ41" value="1"/> A. Endmill</br>
<input type="radio" name="answersQ41" value="2"/> B. Drill Bit</br>
<input type="radio" name="answersQ41" value="3"/> C. Reamer</br>
<input type="radio" name="answersQ41" value="4"/> D. Edge Finder</br>
<br>
<div id="AnswersQ411" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ412" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ413" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ414" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
<div class="col-sm-2">
<img src="images/Picture3.jpg" width="80" height="126">
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-4 col-sm-offset-2">
<div style="font-size: 16px;">
<h3>Test Questions (P3)</h3>
<h5>BT – Instruments & Measurement Reading</h5></br>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-4 col-sm-offset-2">
<div style="font-size: 16px;">
<h4>Q43) What is the reading on the dial caliper?</h4>
<input type="radio" name="answersQ43" value="1"/> A. 1.433 in</br>
<input type="radio" name="answersQ43" value="2"/> B. 1.500 in</br>
<input type="radio" name="answersQ43" value="3"/> C. 1.532 in</br>
<input type="radio" name="answersQ43" value="4"/> D. 1.543 in</br>
<br>
<div id="AnswersQ431" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ432" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ433" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ434" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
<div class="col-sm-2">
<img src="images/Picture4.jpg" width="260" height="228">
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-4 col-sm-offset-2">
<div style="font-size: 16px;">
<h4>Q46) What is the reading on the dial caliper?</h4>
<input type="radio" name="answersQ46" value="1"/> A. 22.16 mm</br>
<input type="radio" name="answersQ46" value="2"/> B. 14.16mm</br>
<input type="radio" name="answersQ46" value="3"/> C. 16.72 mm</br>
<input type="radio" name="answersQ46" value="4"/> D. 21.16 mm</br>
<br>
<div id="AnswersQ461" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ462" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ463" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ464" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
<div class="col-sm-2">
<img src="images/Picture5.jpg" width="260" height="191">
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-5 col-sm-offset-2">
<div style="font-size: 16px;">
<h4>Q47) What is the reading on the Micrometer?</h4>
<input type="radio" name="answersQ47" value="1"/> A. 2.23 mm</br>
<input type="radio" name="answersQ47" value="2"/> B. 2.73 mm</br>
<input type="radio" name="answersQ47" value="3"/> C. 3.23 mm</br>
<input type="radio" name="answersQ47" value="4"/> D. 5.23 mm</br>
<br>
<div id="AnswersQ471" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ472" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ473" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ474" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
<div class="col-sm-2">
<img src="images/Picture6.png" width="194" height="117">
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-5 col-sm-offset-2">
<div style="font-size: 16px;">
<h4>Q48) what is the reading on the vernier caliper?</h4>
<input type="radio" name="answersQ48" value="1"/> A. 10.50 mm</br>
<input type="radio" name="answersQ48" value="2"/> B. 10.63 mm</br>
<input type="radio" name="answersQ48" value="3"/> C. 17.55 mm</br>
<input type="radio" name="answersQ48" value="4"/> D. 0.850 mm</br>
<br>
<div id="AnswersQ481" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ482" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ483" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ484" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
<div class="col-sm-2">
<img src="images/Picture7.jpg" width="300" height="129">
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-5 col-sm-offset-2">
<div style="font-size: 16px;">
<h4>Q49) What is the reading on the dial caliper?</h4>
<input type="radio" name="answersQ49" value="1"/> A. 1.90 in</br>
<input type="radio" name="answersQ49" value="2"/> B. 1.87 in</br>
<input type="radio" name="answersQ49" value="3"/> C. 1.56 in</br>
<input type="radio" name="answersQ49" value="4"/> D. 43.87 in</br>
<br>
<div id="AnswersQ491" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ492" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ493" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ494" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
<div class="col-sm-2">
<img src="images/Picture8.jpg" width="260" height="214">
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-8 col-sm-offset-2">
<div style="font-size: 16px;">
<h4>Q53) Working drawings provide information about which of the following items (check all that apply)</h4>
<div class="question53">
<input class="answersQ531" type="checkbox" name="answersQ53" value="1"/> A. Size and shape of object<br/>
<input class="answersQ532" type="checkbox" name="answersQ53" value="2"/> B. Location of component parts and features<br/>
<input class="answersQ533" type="checkbox" name="answersQ53" value="3"/> C. Materials specifications<br/>
<input class="answersQ534" type="checkbox" name="answersQ53" value="4"/> D. Fasteners; hardware, adhesives, and other custom fasteners<br/>
<input class="answersQ535" type="checkbox" name="answersQ53" value="5"/> E. Finishing techniques and sometimes instructions<br/>
</div>
<br>
<div id="AnswersQ531" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ532" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ533" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ534" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ535" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-4 col-sm-offset-2">
<div style="font-size: 16px;">
<h4>Q60) What is the pitch of the screw?</h4>
<input type="radio" name="answersQ60" value="1"/> A. M12</br>
<input type="radio" name="answersQ60" value="2"/> B. 1.75</br>
<input type="radio" name="answersQ60" value="3"/> C. 45</br>
<input type="radio" name="answersQ60" value="4"/> D. 38.5</br>
<br>
<div id="AnswersQ601" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ602" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block correct">It is correct.</button>
</div>
<div id="AnswersQ603" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
<div id="AnswersQ604" class="desc" style="display: none;">
<button type="button" class="btn btn-primary btn-lg btn-block incorrect">It is incorrect.</button>
</div>
</div>
</div>
<div class="col-sm-2">
<img src="images/Picture9.png" width="210" height="141">
</div>
</div>
<div style="height: 200px"></div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha384-nvAa0+6Qg9clwYCGGPpDQLVpLNn0fRaROjHqs13t4Ggj3Ez50XnGQqc/r8MhnRDZ" crossorigin="anonymous"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script src="js/custom.js"></script>
<script src="js/jquery-3.6.0.min.js"></script>
</body>
</html>