-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUJIAN MATERI.mhtml
19776 lines (13979 loc) · 810 KB
/
UJIAN MATERI.mhtml
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
From: <Saved by Blink>
Snapshot-Content-Location: http://ti.lab.gunadarma.ac.id/praktikum/mod/quiz/review.php?attempt=515958
Subject: UJIAN MATERI
Date: Sat, 7 Jan 2023 00:39:02 -0000
MIME-Version: 1.0
Content-Type: multipart/related;
type="text/html";
boundary="----MultipartBoundary--BEPeloChXMcoL3JdTCBPmqUmfOFqno5FawJCqjydEU----"
------MultipartBoundary--BEPeloChXMcoL3JdTCBPmqUmfOFqno5FawJCqjydEU----
Content-Type: text/html
Content-ID: <[email protected]>
Content-Transfer-Encoding: quoted-printable
Content-Location: http://ti.lab.gunadarma.ac.id/praktikum/mod/quiz/review.php?attempt=515958
<!DOCTYPE html><html dir=3D"ltr" lang=3D"en" xml:lang=3D"en" class=3D"yui3-=
js-enabled"><head><meta http-equiv=3D"Content-Type" content=3D"text/html; c=
harset=3DUTF-8">
<title>UJIAN MATERI</title>
<link rel=3D"shortcut icon" href=3D"http://ti.lab.gunadarma.ac.id/prakt=
ikum/theme/image.php/boost/theme/1617205489/favicon">
=20
<meta name=3D"keywords" content=3D"moodle, UJIAN MATERI">
<link rel=3D"stylesheet" type=3D"text/css" href=3D"http://ti.lab.gunadarma.=
ac.id/praktikum/theme/yui_combo.php?rollup/3.17.2/yui-moodlesimple-min.css"=
><link rel=3D"stylesheet" type=3D"text/css" href=3D"http://ti.lab.gunadarma=
.ac.id/praktikum/theme/styles.php/boost/1617205489/all">
<meta name=3D"viewport" content=3D"width=3Ddevice-width, initial-scale=
=3D1.0">
</head>
<body id=3D"page-mod-quiz-review" class=3D"format-topics path-mod path-mod=
-quiz safari dir-ltr lang-en yui-skin-sam yui3-skin-sam ti-lab-gunadarma-ac=
-id--praktikum pagelayout-incourse course-934 context-66489 cmid-38736 cate=
gory-82 drawer-open-left jsenabled">
<div id=3D"page-wrapper">
<div>
<a class=3D"sr-only sr-only-focusable" href=3D"http://ti.lab.gunadarma.=
ac.id/praktikum/mod/quiz/review.php?attempt=3D515958#maincontent">Skip to m=
ain content</a>
</div>
<header role=3D"banner" class=3D"pos-f-t navbar navbar-full navbar-ligh=
t bg-faded navbar-static-top moodle-has-zindex">
=20
<div class=3D"container-fluid navbar-nav">
=20
<div data-region=3D"drawer-toggle">
<button aria-expanded=3D"true" aria-controls=3D"nav-drawer"=
type=3D"button" class=3D"btn pull-xs-left m-r-1 btn-secondary" data-action=
=3D"toggle-drawer" data-side=3D"left" data-preference=3D"drawer-open-nav"><=
i class=3D"icon fa fa-bars fa-fw " aria-hidden=3D"true" title=3D"" aria-lab=
el=3D""></i><span class=3D"sr-only">Side panel</span></button>
</div>
=20
<a href=3D"http://ti.lab.gunadarma.ac.id/praktikum" class=3D"na=
vbar-brand=20
hidden-sm-down
">
<span class=3D"site-name hidden-sm-down">Lab TI</span>
</a>
=20
<!-- user_menu -->
<div class=3D"usermenu"><div class=3D"action-menu moodle-action=
menu nowrap-items" id=3D"action-menu-1" data-enhance=3D"moodle-core-actionm=
enu">
<div class=3D"menubar" id=3D"action-menu-1-menubar" role=3D"menubar=
">
<div class=3D"dropdown d-inline">
<a href=3D"http://ti.lab.gunadarma.ac.id/praktikum/mod/quiz/review.php?=
attempt=3D515958#" class=3D" dropdown-toggle" id=3D"dropdown-1" title=3D"" =
role=3D"button" data-toggle=3D"dropdown" aria-haspopup=3D"true" aria-expand=
ed=3D"false"><span class=3D"userbutton"><span class=3D"usertext">3IA20 MUHA=
MMAD REZA HIDAYAT</span><span class=3D"avatars"><span class=3D"avatar curre=
nt"><img src=3D"http://ti.lab.gunadarma.ac.id/praktikum/theme/image.php/boo=
st/core/1617205489/u/f2" alt=3D"Picture of 3IA20 MUHAMMAD REZA HIDAYAT" tit=
le=3D"Picture of 3IA20 MUHAMMAD REZA HIDAYAT" class=3D"userpicture defaultu=
serpic" width=3D"35" height=3D"35" role=3D"presentation"></span></span></sp=
an><b class=3D"caret"></b></a>
<div class=3D"dropdown-menu dropdown-menu-right menu align-tr-br" =
id=3D"action-menu-1-menu" data-rel=3D"menu-content" aria-labelledby=3D"acti=
on-menu-toggle-1" role=3D"menu" data-align=3D"tr-br">
<a href=3D"http://ti.lab.gunadarma.ac.id/praktikum/my/" class=
=3D"dropdown-item menu-action" role=3D"menuitem" data-title=3D"mymoodle,adm=
in" aria-labelledby=3D"actionmenuaction-1"><i class=3D"icon fa fa-tachomete=
r fa-fw " aria-hidden=3D"true" title=3D"Dashboard" aria-label=3D"Dashboard"=
></i><span class=3D"menu-action-text" id=3D"actionmenuaction-1">Dashboard</=
span></a><div class=3D"dropdown-divider"></div><a href=3D"http://ti.lab.gun=
adarma.ac.id/praktikum/user/profile.php?id=3D5145" class=3D"dropdown-item m=
enu-action" role=3D"menuitem" data-title=3D"profile,moodle" aria-labelledby=
=3D"actionmenuaction-2"><i class=3D"icon fa fa-user fa-fw " aria-hidden=3D"=
true" title=3D"Profile" aria-label=3D"Profile"></i><span class=3D"menu-acti=
on-text" id=3D"actionmenuaction-2">Profile</span></a><a href=3D"http://ti.l=
ab.gunadarma.ac.id/praktikum/grade/report/overview/index.php" class=3D"drop=
down-item menu-action" role=3D"menuitem" data-title=3D"grades,grades" aria-=
labelledby=3D"actionmenuaction-3"><i class=3D"icon fa fa-table fa-fw " aria=
-hidden=3D"true" title=3D"Grades" aria-label=3D"Grades"></i><span class=3D"=
menu-action-text" id=3D"actionmenuaction-3">Grades</span></a><a href=3D"htt=
p://ti.lab.gunadarma.ac.id/praktikum/message/index.php" class=3D"dropdown-i=
tem menu-action" role=3D"menuitem" data-title=3D"messages,message" aria-lab=
elledby=3D"actionmenuaction-4"><i class=3D"icon fa fa-comment fa-fw " aria-=
hidden=3D"true" title=3D"Messages" aria-label=3D"Messages"></i><span class=
=3D"menu-action-text" id=3D"actionmenuaction-4">Messages</span></a><a href=
=3D"http://ti.lab.gunadarma.ac.id/praktikum/user/preferences.php" class=3D"=
dropdown-item menu-action" role=3D"menuitem" data-title=3D"preferences,mood=
le" aria-labelledby=3D"actionmenuaction-5"><i class=3D"icon fa fa-wrench fa=
-fw " aria-hidden=3D"true" title=3D"Preferences" aria-label=3D"Preferences"=
></i><span class=3D"menu-action-text" id=3D"actionmenuaction-5">Preferences=
</span></a><div class=3D"dropdown-divider"></div><a href=3D"http://ti.lab.g=
unadarma.ac.id/praktikum/login/logout.php?sesskey=3D0IHq650ODq" class=3D"dr=
opdown-item menu-action" role=3D"menuitem" data-title=3D"logout,moodle" ari=
a-labelledby=3D"actionmenuaction-6"><i class=3D"icon fa fa-sign-out fa-fw "=
aria-hidden=3D"true" title=3D"Log out" aria-label=3D"Log out"></i><span cl=
ass=3D"menu-action-text" id=3D"actionmenuaction-6">Log out</span></a>
</div>
</div>
</div>
</div></div>
=20
<!-- navbar_plugin_output -->
<div class=3D"popover-region collapsed popover-region-notificat=
ions" id=3D"nav-notification-popover-container" data-userid=3D"5145" data-r=
egion=3D"popover-region">
<div class=3D"popover-region-toggle nav-link" data-region=3D"popover-re=
gion-toggle" aria-role=3D"button" aria-controls=3D"popover-region-container=
-63b8bf23e2e1263b8bf23cf97912" aria-haspopup=3D"true" aria-label=3D"Show no=
tification window with no new notifications" tabindex=3D"0">
<i class=3D"icon fa fa-bell fa-fw " aria-hidden=3D"true" ti=
tle=3D"Toggle notifications menu" aria-label=3D"Toggle notifications menu">=
</i>
<div class=3D"count-container hidden" data-region=3D"count-containe=
r"></div>
</div>
<div id=3D"popover-region-container-63b8bf23e2e1263b8bf23cf97912" class=
=3D"popover-region-container" data-region=3D"popover-region-container" aria=
-expanded=3D"false" aria-hidden=3D"true" aria-label=3D"Notification window"=
role=3D"region">
<div class=3D"popover-region-header-container">
<h3 class=3D"popover-region-header-text" data-region=3D"popover=
-region-header-text">Notifications</h3>
<div class=3D"popover-region-header-actions" data-region=3D"pop=
over-region-header-actions"> <div class=3D"hover-tooltip-container">
<a class=3D"mark-all-read-button" href=3D"http://ti.lab=
.gunadarma.ac.id/praktikum/mod/quiz/review.php?attempt=3D515958#" title=3D"=
Mark all as read" data-action=3D"mark-all-read" role=3D"button">
<span class=3D"normal-icon"><i class=3D"icon fa fa-chec=
k fa-fw " aria-hidden=3D"true" title=3D"Mark all as read" aria-label=3D"Mar=
k all as read"></i></span>
<span class=3D"loading-icon"><img class=3D"icon " alt=
=3D"Loading" title=3D"Loading" src=3D"http://ti.lab.gunadarma.ac.id/praktik=
um/theme/image.php/boost/core/1617205489/y/loading"></span>
</a>
<div class=3D"hover-tooltip">
Mark all as read
</div>
</div>
<div class=3D"hover-tooltip-container">
<a href=3D"http://ti.lab.gunadarma.ac.id/praktikum/mess=
age/notificationpreferences.php?userid=3D5145" title=3D"Notification prefer=
ences">
<i class=3D"icon fa fa-cog fa-fw " aria-hidden=3D"true"=
title=3D"Notification preferences" aria-label=3D"Notification preferences"=
></i>
</a>
<div class=3D"hover-tooltip">
Notification preferences
</div>
</div>
</div>
</div>
<div class=3D"popover-region-content-container" data-region=3D"popo=
ver-region-content-container">
<div class=3D"popover-region-content" data-region=3D"popover-re=
gion-content">
<div class=3D"all-notifications" data-region=3D"all=
-notifications" role=3D"log" aria-busy=3D"false" aria-atomic=3D"false" aria=
-relevant=3D"additions"></div>
<div class=3D"empty-message" tabindex=3D"0" data-region=3D"empty-me=
ssage">You have no notifications</div>
</div>
<span class=3D"loading-icon"><img class=3D"icon " alt=3D"Loadin=
g" title=3D"Loading" src=3D"http://ti.lab.gunadarma.ac.id/praktikum/theme/i=
mage.php/boost/core/1617205489/y/loading"></span>
</div>
<a class=3D"see-all-link" href=3D"http://ti.lab.gunadarma.a=
c.id/praktikum/message/output/popup/notifications.php">
<div class=3D"popover-region-footer-container">
<div class=3D"popover-region-seeall-text">See all</=
div>
</div>
</a>
</div>
</div>
=20
<!-- search_box -->
<span class=3D"hidden-md-down">
=20
</span>
=20
<nav class=3D"nav navbar-nav hidden-md-down">
<!-- custom_menu -->
=20
<!-- page_heading_menu -->
=20
</nav>
</div>
</header>
=20
<div id=3D"page" class=3D"container-fluid">
<header id=3D"page-header" class=3D"row"><div class=3D"col-xs-12 p-=
a-1"><div class=3D"card"><div class=3D"card-block"><div class=3D"pull-xs-ri=
ght context-header-settings-menu"></div><div class=3D"pull-xs-left"><div cl=
ass=3D"page-context-header"><div class=3D"page-header-headings"><h1>Pemrogr=
aman Web (3IA20)</h1></div></div></div><div class=3D"clearfix w-100 pull-xs=
-left" id=3D"page-navbar"><div class=3D"breadcrumb-nav"><nav role=3D"naviga=
tion">
<ol class=3D"breadcrumb">
<li class=3D"breadcrumb-item"><a href=3D"http://ti.lab.guna=
darma.ac.id/praktikum/my/">Dashboard</a></li>
<li class=3D"breadcrumb-item">My courses</li>
<li class=3D"breadcrumb-item"><a href=3D"http://ti.lab.guna=
darma.ac.id/praktikum/course/view.php?id=3D934" title=3D"Pemrograman Web (3=
IA20)">PWEB - (3IA20)</a></li>
<li class=3D"breadcrumb-item"><a href=3D"http://ti.lab.guna=
darma.ac.id/praktikum/course/view.php?id=3D934#section-8">UJIAN</a></li>
<li class=3D"breadcrumb-item"><a href=3D"http://ti.lab.guna=
darma.ac.id/praktikum/mod/quiz/view.php?id=3D38736" title=3D"Quiz">UJIAN MA=
TERI</a></li>
</ol>
</nav></div><div class=3D"breadcrumb-button pull-xs-right"></div></div><div=
id=3D"course-header"></div></div></div></div></header>
<div id=3D"page-content" class=3D"row">
<div id=3D"region-main-box" class=3D"col-xs-12">
<section id=3D"region-main" class=3D"has-blocks">
<div class=3D"card card-block">
<span class=3D"notifications" id=3D"user-notifications"=
></span>
<div role=3D"main"><span id=3D"maincontent"></span><tab=
le class=3D"generaltable generalbox quizreviewsummary"><tbody><tr><th class=
=3D"cell" scope=3D"row">Started on</th><td class=3D"cell">Saturday, 7 Janua=
ry 2023, 7:32 AM</td></tr><tr><th class=3D"cell" scope=3D"row">State</th><t=
d class=3D"cell">Finished</td></tr><tr><th class=3D"cell" scope=3D"row">Com=
pleted on</th><td class=3D"cell">Saturday, 7 January 2023, 7:38 AM</td></tr=
><tr><th class=3D"cell" scope=3D"row">Time taken</th><td class=3D"cell">6 m=
ins 34 secs</td></tr><tr><th class=3D"cell" scope=3D"row">Marks</th><td cla=
ss=3D"cell">20.00/20.00</td></tr><tr><th class=3D"cell" scope=3D"row">Grade=
</th><td class=3D"cell"><b>10.00</b> out of 10.00 (<b>100</b>%)</td></tr></=
tbody></table><form action=3D"http://ti.lab.gunadarma.ac.id/praktikum/mod/q=
uiz/review.php?attempt=3D515958" method=3D"post" class=3D"questionflagsavef=
orm" autocomplete=3D"off" id=3D"yui_3_17_2_1_1673051939386_214"><div><div i=
d=3D"q1" class=3D"que multichoice deferredfeedback correct"><div class=3D"i=
nfo"><h3 class=3D"no">Question <span class=3D"qno">1</span></h3><div class=
=3D"state">Correct</div><div class=3D"grade">Mark 1.00 out of 1.00</div><di=
v class=3D"questionflag editable" aria-atomic=3D"true" aria-relevant=3D"tex=
t" aria-live=3D"assertive" id=3D"yui_3_17_2_1_1673051939386_24">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p>menentukan struktur dan konten
website<br></p></div><div class=3D"ablock"><div class=3D"prompt">Select one=
:</div><div class=3D"answer"><div class=3D"r0"><input type=3D"radio" name=
=3D"q521586:1_answer" disabled=3D"disabled" value=3D"0" id=3D"q521586:1_ans=
wer0"><label for=3D"q521586:1_answer0" class=3D"m-l-1">a. CSS</label> </div=
>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:1_answer" disabled=
=3D"disabled" value=3D"1" id=3D"q521586:1_answer1"><label for=3D"q521586:1_=
answer1" class=3D"m-l-1">b. BENAR SEMUA</label> </div>
<div class=3D"r0 correct"><input type=3D"radio" name=3D"q521586:1_answer" d=
isabled=3D"disabled" value=3D"2" id=3D"q521586:1_answer2" checked=3D"checke=
d"><label for=3D"q521586:1_answer2" class=3D"m-l-1">c. HTML</label> <i clas=
s=3D"icon fa fa-check text-success fa-fw " aria-hidden=3D"true" title=3D"Co=
rrect" aria-label=3D"Correct"></i></div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:1_answer" disabled=
=3D"disabled" value=3D"3" id=3D"q521586:1_answer3"><label for=3D"q521586:1_=
answer3" class=3D"m-l-1">d. JAVASCRIPT/PHP</label> </div>
</div></div></div><div class=3D"outcome clearfix"><h4 class=3D"accesshide">=
Feedback</h4><div class=3D"feedback"><div class=3D"specificfeedback">Your a=
nswer is correct.</div><div class=3D"rightanswer">The correct answer is: HT=
ML</div></div></div></div></div><div id=3D"q2" class=3D"que multichoice def=
erredfeedback correct"><div class=3D"info"><h3 class=3D"no">Question <span =
class=3D"qno">2</span></h3><div class=3D"state">Correct</div><div class=3D"=
grade">Mark 1.00 out of 1.00</div><div class=3D"questionflag editable" aria=
-atomic=3D"true" aria-relevant=3D"text" aria-live=3D"assertive" id=3D"yui_3=
_17_2_1_1673051939386_33">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p></p><p><span lang=3D"IN">Terdapat 3 konsep
penulisan Javascript diantaranya: ... kecuali</span></p><br><p></p></div><d=
iv class=3D"ablock"><div class=3D"prompt">Select one:</div><div class=3D"an=
swer"><div class=3D"r0"><input type=3D"radio" name=3D"q521586:2_answer" dis=
abled=3D"disabled" value=3D"0" id=3D"q521586:2_answer0"><label for=3D"q5215=
86:2_answer0" class=3D"m-l-1">a. <span lang=3D"IN">Menulis Javascript pada =
Tag </span></label> </div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:2_answer" disabled=
=3D"disabled" value=3D"1" id=3D"q521586:2_answer1"><label for=3D"q521586:2_=
answer1" class=3D"m-l-1">b. <span lang=3D"IN">Menulis Javascript pada
Atribut</span></label> </div>
<div class=3D"r0 correct"><input type=3D"radio" name=3D"q521586:2_answer" d=
isabled=3D"disabled" value=3D"2" id=3D"q521586:2_answer2" checked=3D"checke=
d"><label for=3D"q521586:2_answer2" class=3D"m-l-1">c. CSS</label> <i class=
=3D"icon fa fa-check text-success fa-fw " aria-hidden=3D"true" title=3D"Cor=
rect" aria-label=3D"Correct"></i></div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:2_answer" disabled=
=3D"disabled" value=3D"3" id=3D"q521586:2_answer3"><label for=3D"q521586:2_=
answer3" class=3D"m-l-1">d. <span lang=3D"IN">Menulis Javascript pada
File Eksternal</span></label> </div>
</div></div></div><div class=3D"outcome clearfix"><h4 class=3D"accesshide">=
Feedback</h4><div class=3D"feedback"><div class=3D"specificfeedback">Your a=
nswer is correct.</div><div class=3D"rightanswer">The correct answer is: CS=
S</div></div></div></div></div><div id=3D"q3" class=3D"que multichoice defe=
rredfeedback correct"><div class=3D"info"><h3 class=3D"no">Question <span c=
lass=3D"qno">3</span></h3><div class=3D"state">Correct</div><div class=3D"g=
rade">Mark 1.00 out of 1.00</div><div class=3D"questionflag editable" aria-=
atomic=3D"true" aria-relevant=3D"text" aria-live=3D"assertive" id=3D"yui_3_=
17_2_1_1673051939386_42">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p>halaman informasi yang disediakan melalui jalur internet sehingga =
bisa diakses di seluruh dunia selama terkoneksi dengan jaringan internet di=
sebut ..<br></p></div><div class=3D"ablock"><div class=3D"prompt">Select on=
e:</div><div class=3D"answer"><div class=3D"r0 correct"><input type=3D"radi=
o" name=3D"q521586:3_answer" disabled=3D"disabled" value=3D"0" id=3D"q52158=
6:3_answer0" checked=3D"checked"><label for=3D"q521586:3_answer0" class=3D"=
m-l-1">a. website</label> <i class=3D"icon fa fa-check text-success fa-fw "=
aria-hidden=3D"true" title=3D"Correct" aria-label=3D"Correct"></i></div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:3_answer" disabled=
=3D"disabled" value=3D"1" id=3D"q521586:3_answer1"><label for=3D"q521586:3_=
answer1" class=3D"m-l-1">b. benar semua</label> </div>
<div class=3D"r0"><input type=3D"radio" name=3D"q521586:3_answer" disabled=
=3D"disabled" value=3D"2" id=3D"q521586:3_answer2"><label for=3D"q521586:3_=
answer2" class=3D"m-l-1">c. desktop program</label> </div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:3_answer" disabled=
=3D"disabled" value=3D"3" id=3D"q521586:3_answer3"><label for=3D"q521586:3_=
answer3" class=3D"m-l-1">d. database</label> </div>
</div></div></div><div class=3D"outcome clearfix"><h4 class=3D"accesshide">=
Feedback</h4><div class=3D"feedback"><div class=3D"specificfeedback">Your a=
nswer is correct.</div><div class=3D"rightanswer">The correct answer is: we=
bsite</div></div></div></div></div><div id=3D"q4" class=3D"que multichoice =
deferredfeedback correct"><div class=3D"info"><h3 class=3D"no">Question <sp=
an class=3D"qno">4</span></h3><div class=3D"state">Correct</div><div class=
=3D"grade">Mark 1.00 out of 1.00</div><div class=3D"questionflag editable" =
aria-atomic=3D"true" aria-relevant=3D"text" aria-live=3D"assertive" id=3D"y=
ui_3_17_2_1_1673051939386_51">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p>suatu
teknologi yang digunakan untuk memperindah tampilan halaman website (situs)=
merupakan pengertian dari <br></p></div><div class=3D"ablock"><div cl=
ass=3D"prompt">Select one:</div><div class=3D"answer"><div class=3D"r0 corr=
ect"><input type=3D"radio" name=3D"q521586:4_answer" disabled=3D"disabled" =
value=3D"0" id=3D"q521586:4_answer0" checked=3D"checked"><label for=3D"q521=
586:4_answer0" class=3D"m-l-1">a. CSS</label> <i class=3D"icon fa fa-check =
text-success fa-fw " aria-hidden=3D"true" title=3D"Correct" aria-label=3D"C=
orrect"></i></div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:4_answer" disabled=
=3D"disabled" value=3D"1" id=3D"q521586:4_answer1"><label for=3D"q521586:4_=
answer1" class=3D"m-l-1">b. JAVASCRIPT/PHP</label> </div>
<div class=3D"r0"><input type=3D"radio" name=3D"q521586:4_answer" disabled=
=3D"disabled" value=3D"2" id=3D"q521586:4_answer2"><label for=3D"q521586:4_=
answer2" class=3D"m-l-1">c. BENAR SEMUA</label> </div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:4_answer" disabled=
=3D"disabled" value=3D"3" id=3D"q521586:4_answer3"><label for=3D"q521586:4_=
answer3" class=3D"m-l-1">d. HTML</label> </div>
</div></div></div><div class=3D"outcome clearfix"><h4 class=3D"accesshide">=
Feedback</h4><div class=3D"feedback"><div class=3D"specificfeedback">Your a=
nswer is correct.</div><div class=3D"rightanswer">The correct answer is: CS=
S</div></div></div></div></div><div id=3D"q5" class=3D"que multichoice defe=
rredfeedback correct"><div class=3D"info"><h3 class=3D"no">Question <span c=
lass=3D"qno">5</span></h3><div class=3D"state">Correct</div><div class=3D"g=
rade">Mark 1.00 out of 1.00</div><div class=3D"questionflag editable" aria-=
atomic=3D"true" aria-relevant=3D"text" aria-live=3D"assertive" id=3D"yui_3_=
17_2_1_1673051939386_60">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p>Apa itu Bahasa PHP</p></div><div class=3D"ablock"><div class=3D"pr=
ompt">Select one:</div><div class=3D"answer"><div class=3D"r0 correct"><inp=
ut type=3D"radio" name=3D"q521586:5_answer" disabled=3D"disabled" value=3D"=
0" id=3D"q521586:5_answer0" checked=3D"checked"><label for=3D"q521586:5_ans=
wer0" class=3D"m-l-1">a. <div>=E2=80=A2sebuah bahasa pemrograman serve=
r
side scripting yang
bersifat open
source.</div></label> <i class=3D"icon fa fa-check text-success fa-fw " ari=
a-hidden=3D"true" title=3D"Correct" aria-label=3D"Correct"></i></div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:5_answer" disabled=
=3D"disabled" value=3D"1" id=3D"q521586:5_answer1"><label for=3D"q521586:5_=
answer1" class=3D"m-l-1">b. bahasa pemrograman serbaguna yang bisa dijalank=
an pada hampir semua arsitektur sistem, dan bisa digunakan untuk berbagai a=
plikasi di banyak bidang, mulai dari web development hingga machine learnin=
g</label> </div>
<div class=3D"r0"><input type=3D"radio" name=3D"q521586:5_answer" disabled=
=3D"disabled" value=3D"2" id=3D"q521586:5_answer2"><label for=3D"q521586:5_=
answer2" class=3D"m-l-1">c. benar semua</label> </div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:5_answer" disabled=
=3D"disabled" value=3D"3" id=3D"q521586:5_answer3"><label for=3D"q521586:5_=
answer3" class=3D"m-l-1">d. bahasa pemrograman <b>yang</b> pertam=
a kali di buat oleh Profesor Niklaus Wirth, seorang anggota International F=
ederation of Information Processing (IFIP) pada tahun 1971.</label> </div>
</div></div></div><div class=3D"outcome clearfix"><h4 class=3D"accesshide">=
Feedback</h4><div class=3D"feedback"><div class=3D"specificfeedback">Your a=
nswer is correct.</div><div class=3D"rightanswer">The correct answer is: <d=
iv>=E2=80=A2sebuah bahasa pemrograman server
side scripting yang
bersifat open
source.</div></div></div></div></div></div><div id=3D"q6" class=3D"que mult=
ichoice deferredfeedback correct"><div class=3D"info"><h3 class=3D"no">Ques=
tion <span class=3D"qno">6</span></h3><div class=3D"state">Correct</div><di=
v class=3D"grade">Mark 1.00 out of 1.00</div><div class=3D"questionflag edi=
table" aria-atomic=3D"true" aria-relevant=3D"text" aria-live=3D"assertive" =
id=3D"yui_3_17_2_1_1673051939386_69">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p>Server
Basis Data (Database) yang didukung oleh PHP antara lain: ( kecuali)<br></p=
></div><div class=3D"ablock"><div class=3D"prompt">Select one:</div><div cl=
ass=3D"answer"><div class=3D"r0"><input type=3D"radio" name=3D"q521586:6_an=
swer" disabled=3D"disabled" value=3D"0" id=3D"q521586:6_answer0"><label for=
=3D"q521586:6_answer0" class=3D"m-l-1">a. MySql</label> </div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:6_answer" disabled=
=3D"disabled" value=3D"1" id=3D"q521586:6_answer1"><label for=3D"q521586:6_=
answer1" class=3D"m-l-1">b. <div>DB2</div></label> </div>
<div class=3D"r0 correct"><input type=3D"radio" name=3D"q521586:6_answer" d=
isabled=3D"disabled" value=3D"2" id=3D"q521586:6_answer2" checked=3D"checke=
d"><label for=3D"q521586:6_answer2" class=3D"m-l-1">c. java</label> <i clas=
s=3D"icon fa fa-check text-success fa-fw " aria-hidden=3D"true" title=3D"Co=
rrect" aria-label=3D"Correct"></i></div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:6_answer" disabled=
=3D"disabled" value=3D"3" id=3D"q521586:6_answer3"><label for=3D"q521586:6_=
answer3" class=3D"m-l-1">d. <div>PostgreSQL</div></label> </div>
</div></div></div><div class=3D"outcome clearfix"><h4 class=3D"accesshide">=
Feedback</h4><div class=3D"feedback"><div class=3D"specificfeedback">Your a=
nswer is correct.</div><div class=3D"rightanswer">The correct answer is: ja=
va</div></div></div></div></div><div id=3D"q7" class=3D"que multichoice def=
erredfeedback correct"><div class=3D"info"><h3 class=3D"no">Question <span =
class=3D"qno">7</span></h3><div class=3D"state">Correct</div><div class=3D"=
grade">Mark 1.00 out of 1.00</div><div class=3D"questionflag editable" aria=
-atomic=3D"true" aria-relevant=3D"text" aria-live=3D"assertive" id=3D"yui_3=
_17_2_1_1673051939386_78">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p>Tag dasar HMTL yang berfungsi untuk </p><p>Membuat formulir u=
ntuk mengumpulkan
input pengguna menggunakan apa ?</p><p></p></div><div class=3D"ablock"><div=
class=3D"prompt">Select one:</div><div class=3D"answer"><div class=3D"r0">=
<input type=3D"radio" name=3D"q521586:7_answer" disabled=3D"disabled" value=
=3D"0" id=3D"q521586:7_answer0"><label for=3D"q521586:7_answer0" class=3D"m=
-l-1">a. <label></label> </div>
<div class=3D"r1 correct"><input type=3D"radio" name=3D"q521586:7_answer" d=
isabled=3D"disabled" value=3D"1" id=3D"q521586:7_answer1" checked=3D"checke=
d"><label for=3D"q521586:7_answer1" class=3D"m-l-1">b. <form></label>=
<i class=3D"icon fa fa-check text-success fa-fw " aria-hidden=3D"true" tit=
le=3D"Correct" aria-label=3D"Correct"></i></div>
<div class=3D"r0"><input type=3D"radio" name=3D"q521586:7_answer" disabled=
=3D"disabled" value=3D"2" id=3D"q521586:7_answer2"><label for=3D"q521586:7_=
answer2" class=3D"m-l-1">c. <body></label> </div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:7_answer" disabled=
=3D"disabled" value=3D"3" id=3D"q521586:7_answer3"><label for=3D"q521586:7_=
answer3" class=3D"m-l-1">d. <textinput></label> </div>
</div></div></div><div class=3D"outcome clearfix"><h4 class=3D"accesshide">=
Feedback</h4><div class=3D"feedback"><div class=3D"specificfeedback">Your a=
nswer is correct.</div><div class=3D"rightanswer">The correct answer is: &l=
t;form></div></div></div></div></div><div id=3D"q8" class=3D"que truefal=
se deferredfeedback correct"><div class=3D"info"><h3 class=3D"no">Question =
<span class=3D"qno">8</span></h3><div class=3D"state">Correct</div><div cla=
ss=3D"grade">Mark 1.00 out of 1.00</div><div class=3D"questionflag editable=
" aria-atomic=3D"true" aria-relevant=3D"text" aria-live=3D"assertive" id=3D=
"yui_3_17_2_1_1673051939386_87">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p></p><p><span lang=3D"EN-ID">Beberapa keunggulan yang dimiliki oleh=
ReactJs, antara
lain:</span></p>
<p><!--[if !supportLists]--><span lang=3D"EN-ID">1. =
</span><!--[endif]--><strong><span lang=3D"EN-ID">Declarative</span></stron=
g><span lang=3D"EN-ID"><br>
React dapat membuat UI yang interaktif, sehingga dapat dengan mudah membuat
desain yang simple untuk di setiap state di dalam aplikasi. Declarative vie=
ws
dapat membuat kode lebih mudah untuk di prediksi dan lebih mudah untuk di
debug.</span></p>
<p><!--[if !supportLists]--><span lang=3D"EN-ID">2. =
</span><!--[endif]--><strong><span lang=3D"EN-ID">Component =E2=80=94 Based=
</span></strong><span lang=3D"EN-ID"><br>
React dapat membuat Encapsulated Component yang dapat mengatur setiap
tahapannya, baru kemudian membuat complex UIs component yang sudah dibuat.<=
/span></p>
<p><!--[if !supportLists]--><span lang=3D"EN-ID">3. =
</span><!--[endif]--><strong><span lang=3D"EN-ID">Learn Once, Write Anywher=
e</span></strong><span lang=3D"EN-ID"><br>
Developer dapat men-develop fitur baru menggunakan react tanpa mengubah kod=
e
sebelumnya, react juga dapat bekerja menggunakan Node JS dan mobile apps
menggunakan React Native.</span></p><br><p></p></div><div class=3D"ablock">=
<div class=3D"prompt">Select one:</div><div class=3D"answer"><div class=3D"=
r0 correct"><input type=3D"radio" name=3D"q521586:8_answer" value=3D"1" id=
=3D"q521586:8_answertrue" disabled=3D"disabled" checked=3D"checked"><label =
for=3D"q521586:8_answertrue" class=3D"m-l-1">True</label> <i class=3D"icon =
fa fa-check text-success fa-fw " aria-hidden=3D"true" title=3D"Correct" ari=
a-label=3D"Correct"></i></div><div class=3D"r1"><input type=3D"radio" name=
=3D"q521586:8_answer" value=3D"0" id=3D"q521586:8_answerfalse" disabled=3D"=
disabled"><label for=3D"q521586:8_answerfalse" class=3D"m-l-1">False</label=
> </div></div></div></div><div class=3D"outcome clearfix"><h4 class=3D"acce=
sshide">Feedback</h4><div class=3D"feedback"><div class=3D"rightanswer">The=
correct answer is 'True'.</div></div></div></div></div><div id=3D"q9" clas=
s=3D"que multichoice deferredfeedback correct"><div class=3D"info"><h3 clas=
s=3D"no">Question <span class=3D"qno">9</span></h3><div class=3D"state">Cor=
rect</div><div class=3D"grade">Mark 1.00 out of 1.00</div><div class=3D"que=
stionflag editable" aria-atomic=3D"true" aria-relevant=3D"text" aria-live=
=3D"assertive" id=3D"yui_3_17_2_1_1673051939386_96">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p><span lang=3D"IN">operator untuk melakukan operasi aritmatika
seperti penjumlahan, pengurangan, pembagian, perkalian, dsb</span><br></p><=
/div><div class=3D"ablock"><div class=3D"prompt">Select one:</div><div clas=
s=3D"answer"><div class=3D"r0 correct"><input type=3D"radio" name=3D"q52158=
6:9_answer" disabled=3D"disabled" value=3D"0" id=3D"q521586:9_answer0" chec=
ked=3D"checked"><label for=3D"q521586:9_answer0" class=3D"m-l-1">a. operato=
r aritmatika</label> <i class=3D"icon fa fa-check text-success fa-fw " aria=
-hidden=3D"true" title=3D"Correct" aria-label=3D"Correct"></i></div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:9_answer" disabled=
=3D"disabled" value=3D"1" id=3D"q521586:9_answer1"><label for=3D"q521586:9_=
answer1" class=3D"m-l-1">b. operator relasi /perbandingan</label> </div>
<div class=3D"r0"><input type=3D"radio" name=3D"q521586:9_answer" disabled=
=3D"disabled" value=3D"2" id=3D"q521586:9_answer2"><label for=3D"q521586:9_=
answer2" class=3D"m-l-1">c. operator logika</label> </div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:9_answer" disabled=
=3D"disabled" value=3D"3" id=3D"q521586:9_answer3"><label for=3D"q521586:9_=
answer3" class=3D"m-l-1">d. operator penugasan</label> </div>
</div></div></div><div class=3D"outcome clearfix"><h4 class=3D"accesshide">=
Feedback</h4><div class=3D"feedback"><div class=3D"specificfeedback">Your a=
nswer is correct.</div><div class=3D"rightanswer">The correct answer is: op=
erator aritmatika</div></div></div></div></div><div id=3D"q10" class=3D"que=
multichoice deferredfeedback correct"><div class=3D"info"><h3 class=3D"no"=
>Question <span class=3D"qno">10</span></h3><div class=3D"state">Correct</d=
iv><div class=3D"grade">Mark 1.00 out of 1.00</div><div class=3D"questionfl=
ag editable" aria-atomic=3D"true" aria-relevant=3D"text" aria-live=3D"asser=
tive" id=3D"yui_3_17_2_1_1673051939386_105">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p>elemen
dalam dokumen HTML atau dokumen lainnya yang menautkan ke bagian lain dari
dokumen atau ke dokumen lain sekaligus disebut apa ?<br></p></div><div clas=
s=3D"ablock"><div class=3D"prompt">Select one:</div><div class=3D"answer"><=
div class=3D"r0 correct"><input type=3D"radio" name=3D"q521586:10_answer" d=
isabled=3D"disabled" value=3D"0" id=3D"q521586:10_answer0" checked=3D"check=
ed"><label for=3D"q521586:10_answer0" class=3D"m-l-1">a. Hyplerlink</label>=
<i class=3D"icon fa fa-check text-success fa-fw " aria-hidden=3D"true" tit=
le=3D"Correct" aria-label=3D"Correct"></i></div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:10_answer" disabled=
=3D"disabled" value=3D"1" id=3D"q521586:10_answer1"><label for=3D"q521586:1=
0_answer1" class=3D"m-l-1">b. CSS</label> </div>
<div class=3D"r0"><input type=3D"radio" name=3D"q521586:10_answer" disabled=
=3D"disabled" value=3D"2" id=3D"q521586:10_answer2"><label for=3D"q521586:1=
0_answer2" class=3D"m-l-1">c. HTML</label> </div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:10_answer" disabled=
=3D"disabled" value=3D"3" id=3D"q521586:10_answer3"><label for=3D"q521586:1=
0_answer3" class=3D"m-l-1">d. PHP</label> </div>
</div></div></div><div class=3D"outcome clearfix"><h4 class=3D"accesshide">=
Feedback</h4><div class=3D"feedback"><div class=3D"specificfeedback">Your a=
nswer is correct.</div><div class=3D"rightanswer">The correct answer is: Hy=
plerlink</div></div></div></div></div><div id=3D"q11" class=3D"que truefals=
e deferredfeedback correct"><div class=3D"info"><h3 class=3D"no">Question <=
span class=3D"qno">11</span></h3><div class=3D"state">Correct</div><div cla=
ss=3D"grade">Mark 1.00 out of 1.00</div><div class=3D"questionflag editable=
" aria-atomic=3D"true" aria-relevant=3D"text" aria-live=3D"assertive" id=3D=
"yui_3_17_2_1_1673051939386_114">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p>API
adalah singkatan dari Application Programming Interface. API sendiri merupa=
kan
interface yang dapat menghubungkan satu aplikasi dengan aplikasi lainnya.<b=
r></p></div><div class=3D"ablock"><div class=3D"prompt">Select one:</div><d=
iv class=3D"answer"><div class=3D"r0 correct"><input type=3D"radio" name=3D=
"q521586:11_answer" value=3D"1" id=3D"q521586:11_answertrue" disabled=3D"di=
sabled" checked=3D"checked"><label for=3D"q521586:11_answertrue" class=3D"m=
-l-1">True</label> <i class=3D"icon fa fa-check text-success fa-fw " aria-h=
idden=3D"true" title=3D"Correct" aria-label=3D"Correct"></i></div><div clas=
s=3D"r1"><input type=3D"radio" name=3D"q521586:11_answer" value=3D"0" id=3D=
"q521586:11_answerfalse" disabled=3D"disabled"><label for=3D"q521586:11_ans=
werfalse" class=3D"m-l-1">False</label> </div></div></div></div><div class=
=3D"outcome clearfix"><h4 class=3D"accesshide">Feedback</h4><div class=3D"f=
eedback"><div class=3D"rightanswer">The correct answer is 'True'.</div></di=
v></div></div></div><div id=3D"q12" class=3D"que multichoice deferredfeedba=
ck correct"><div class=3D"info"><h3 class=3D"no">Question <span class=3D"qn=
o">12</span></h3><div class=3D"state">Correct</div><div class=3D"grade">Mar=
k 1.00 out of 1.00</div><div class=3D"questionflag editable" aria-atomic=3D=
"true" aria-relevant=3D"text" aria-live=3D"assertive" id=3D"yui_3_17_2_1_16=
73051939386_123">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p></p><p>Apa yang dimaksud dengan Front End Developer ?</p><br><p></=
p></div><div class=3D"ablock"><div class=3D"prompt">Select one:</div><div c=
lass=3D"answer"><div class=3D"r0"><input type=3D"radio" name=3D"q521586:12_=
answer" disabled=3D"disabled" value=3D"0" id=3D"q521586:12_answer0"><label =
for=3D"q521586:12_answer0" class=3D"m-l-1">a. salah semua</label> </div>
<div class=3D"r1 correct"><input type=3D"radio" name=3D"q521586:12_answer" =
disabled=3D"disabled" value=3D"1" id=3D"q521586:12_answer1" checked=3D"chec=
ked"><label for=3D"q521586:12_answer1" class=3D"m-l-1">b. Bagian frontend d=
ari sebuah website adalah bagian yang dilihat oleh user. Frontend dibangun =
menggunakan HTML, CSS, JavaScript.</label> <i class=3D"icon fa fa-check tex=
t-success fa-fw " aria-hidden=3D"true" title=3D"Correct" aria-label=3D"Corr=
ect"></i></div>
<div class=3D"r0"><input type=3D"radio" name=3D"q521586:12_answer" disabled=
=3D"disabled" value=3D"2" id=3D"q521586:12_answer2"><label for=3D"q521586:1=
2_answer2" class=3D"m-l-1">c. bagian belakang layar dari sebuah website. Ba=
hasa pemrograman untuk backend development diantaranya adalah PHP, Ruby,
Python, dll.</label> </div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:12_answer" disabled=
=3D"disabled" value=3D"3" id=3D"q521586:12_answer3"><label for=3D"q521586:1=
2_answer3" class=3D"m-l-1">d. bekerja pada bagian frontend dan backend</lab=
el> </div>
</div></div></div><div class=3D"outcome clearfix"><h4 class=3D"accesshide">=
Feedback</h4><div class=3D"feedback"><div class=3D"specificfeedback">Your a=
nswer is correct.</div><div class=3D"rightanswer">The correct answer is: Ba=
gian frontend dari sebuah website adalah bagian yang dilihat oleh user. Fro=
ntend dibangun menggunakan HTML, CSS, JavaScript.</div></div></div></div></=
div><div id=3D"q13" class=3D"que truefalse deferredfeedback correct"><div c=
lass=3D"info"><h3 class=3D"no">Question <span class=3D"qno">13</span></h3><=
div class=3D"state">Correct</div><div class=3D"grade">Mark 1.00 out of 1.00=
</div><div class=3D"questionflag editable" aria-atomic=3D"true" aria-releva=
nt=3D"text" aria-live=3D"assertive" id=3D"yui_3_17_2_1_1673051939386_132">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p><span lang=3D"EN-ID">React JS Pertama kali diciptakan oleh Jordan =
Walke</span><br></p></div><div class=3D"ablock"><div class=3D"prompt">Selec=
t one:</div><div class=3D"answer"><div class=3D"r0"><input type=3D"radio" n=
ame=3D"q521586:13_answer" value=3D"1" id=3D"q521586:13_answertrue" disabled=
=3D"disabled"><label for=3D"q521586:13_answertrue" class=3D"m-l-1">True</la=
bel> </div><div class=3D"r1 correct"><input type=3D"radio" name=3D"q521586:=
13_answer" value=3D"0" id=3D"q521586:13_answerfalse" disabled=3D"disabled" =
checked=3D"checked"><label for=3D"q521586:13_answerfalse" class=3D"m-l-1">F=
alse</label> <i class=3D"icon fa fa-check text-success fa-fw " aria-hidden=
=3D"true" title=3D"Correct" aria-label=3D"Correct"></i></div></div></div></=
div><div class=3D"outcome clearfix"><h4 class=3D"accesshide">Feedback</h4><=
div class=3D"feedback"><div class=3D"rightanswer">The correct answer is 'Fa=
lse'.</div></div></div></div></div><div id=3D"q14" class=3D"que truefalse d=
eferredfeedback correct"><div class=3D"info"><h3 class=3D"no">Question <spa=
n class=3D"qno">14</span></h3><div class=3D"state">Correct</div><div class=
=3D"grade">Mark 1.00 out of 1.00</div><div class=3D"questionflag editable" =
aria-atomic=3D"true" aria-relevant=3D"text" aria-live=3D"assertive" id=3D"y=
ui_3_17_2_1_1673051939386_141">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p></p><p><span lang=3D"IN">Sintaks pada JavaScript
mendefinisikan dua jenis nilai (value), yaitu:</span></p>1. Nilai Tetap<p><=
/p><p>2. Nilai variabel </p></div><div class=3D"ablock"><div class=3D"=
prompt">Select one:</div><div class=3D"answer"><div class=3D"r0 correct"><i=
nput type=3D"radio" name=3D"q521586:14_answer" value=3D"1" id=3D"q521586:14=
_answertrue" disabled=3D"disabled" checked=3D"checked"><label for=3D"q52158=
6:14_answertrue" class=3D"m-l-1">True</label> <i class=3D"icon fa fa-check =
text-success fa-fw " aria-hidden=3D"true" title=3D"Correct" aria-label=3D"C=
orrect"></i></div><div class=3D"r1"><input type=3D"radio" name=3D"q521586:1=
4_answer" value=3D"0" id=3D"q521586:14_answerfalse" disabled=3D"disabled"><=
label for=3D"q521586:14_answerfalse" class=3D"m-l-1">False</label> </div></=
div></div></div><div class=3D"outcome clearfix"><h4 class=3D"accesshide">Fe=
edback</h4><div class=3D"feedback"><div class=3D"rightanswer">The correct a=
nswer is 'True'.</div></div></div></div></div><div id=3D"q15" class=3D"que =
multichoice deferredfeedback correct"><div class=3D"info"><h3 class=3D"no">=
Question <span class=3D"qno">15</span></h3><div class=3D"state">Correct</di=
v><div class=3D"grade">Mark 1.00 out of 1.00</div><div class=3D"questionfla=
g editable" aria-atomic=3D"true" aria-relevant=3D"text" aria-live=3D"assert=
ive" id=3D"yui_3_17_2_1_1673051939386_150">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p></p><div>=C2=B7Memberi style CSS pada elemen HTML
yang diingikan merupakan definisi dari .. ?</div><br><p></p></div><div clas=
s=3D"ablock"><div class=3D"prompt">Select one:</div><div class=3D"answer"><=
div class=3D"r0"><input type=3D"radio" name=3D"q521586:15_answer" disabled=
=3D"disabled" value=3D"0" id=3D"q521586:15_answer0"><label for=3D"q521586:1=
5_answer0" class=3D"m-l-1">a. Block
Declaration</label> </div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:15_answer" disabled=
=3D"disabled" value=3D"1" id=3D"q521586:15_answer1"><label for=3D"q521586:1=
5_answer1" class=3D"m-l-1">b. Kedua jawaban benar</label> </div>
<div class=3D"r0 correct"><input type=3D"radio" name=3D"q521586:15_answer" =
disabled=3D"disabled" value=3D"2" id=3D"q521586:15_answer2" checked=3D"chec=
ked"><label for=3D"q521586:15_answer2" class=3D"m-l-1">c. Selector</label> =
<i class=3D"icon fa fa-check text-success fa-fw " aria-hidden=3D"true" titl=
e=3D"Correct" aria-label=3D"Correct"></i></div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:15_answer" disabled=
=3D"disabled" value=3D"3" id=3D"q521586:15_answer3"><label for=3D"q521586:1=
5_answer3" class=3D"m-l-1">d. kedua jawaban salah</label> </div>
</div></div></div><div class=3D"outcome clearfix"><h4 class=3D"accesshide">=
Feedback</h4><div class=3D"feedback"><div class=3D"specificfeedback">Your a=
nswer is correct.</div><div class=3D"rightanswer">The correct answer is: Se=
lector</div></div></div></div></div><div id=3D"q16" class=3D"que multichoic=
e deferredfeedback correct"><div class=3D"info"><h3 class=3D"no">Question <=
span class=3D"qno">16</span></h3><div class=3D"state">Correct</div><div cla=
ss=3D"grade">Mark 1.00 out of 1.00</div><div class=3D"questionflag editable=
" aria-atomic=3D"true" aria-relevant=3D"text" aria-live=3D"assertive" id=3D=
"yui_3_17_2_1_1673051939386_159">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p><span lang=3D"IN">Library JavaScript yang akan mempercepat
proses pembuatan website adalah </span><br></p></div><div class=3D"abl=
ock"><div class=3D"prompt">Select one:</div><div class=3D"answer"><div clas=
s=3D"r0"><input type=3D"radio" name=3D"q521586:16_answer" disabled=3D"disab=
led" value=3D"0" id=3D"q521586:16_answer0"><label for=3D"q521586:16_answer0=
" class=3D"m-l-1">a. css</label> </div>
<div class=3D"r1 correct"><input type=3D"radio" name=3D"q521586:16_answer" =
disabled=3D"disabled" value=3D"1" id=3D"q521586:16_answer1" checked=3D"chec=
ked"><label for=3D"q521586:16_answer1" class=3D"m-l-1">b. JQuery</label> <i=
class=3D"icon fa fa-check text-success fa-fw " aria-hidden=3D"true" title=
=3D"Correct" aria-label=3D"Correct"></i></div>
<div class=3D"r0"><input type=3D"radio" name=3D"q521586:16_answer" disabled=
=3D"disabled" value=3D"2" id=3D"q521586:16_answer2"><label for=3D"q521586:1=
6_answer2" class=3D"m-l-1">c. php</label> </div>
<div class=3D"r1"><input type=3D"radio" name=3D"q521586:16_answer" disabled=
=3D"disabled" value=3D"3" id=3D"q521586:16_answer3"><label for=3D"q521586:1=
6_answer3" class=3D"m-l-1">d. html</label> </div>
</div></div></div><div class=3D"outcome clearfix"><h4 class=3D"accesshide">=
Feedback</h4><div class=3D"feedback"><div class=3D"specificfeedback">Your a=
nswer is correct.</div><div class=3D"rightanswer">The correct answer is: JQ=
uery</div></div></div></div></div><div id=3D"q17" class=3D"que truefalse de=
ferredfeedback correct"><div class=3D"info"><h3 class=3D"no">Question <span=
class=3D"qno">17</span></h3><div class=3D"state">Correct</div><div class=
=3D"grade">Mark 1.00 out of 1.00</div><div class=3D"questionflag editable" =
aria-atomic=3D"true" aria-relevant=3D"text" aria-live=3D"assertive" id=3D"y=
ui_3_17_2_1_1673051939386_168">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p>Composite API digunakan untuk kepentingan umum tapi sebatas p=
ihak
yang sudah memiliki izin penggunaannya.<br></p></div><div class=3D"ablock">=
<div class=3D"prompt">Select one:</div><div class=3D"answer"><div class=3D"=
r0"><input type=3D"radio" name=3D"q521586:17_answer" value=3D"1" id=3D"q521=
586:17_answertrue" disabled=3D"disabled"><label for=3D"q521586:17_answertru=
e" class=3D"m-l-1">True</label> </div><div class=3D"r1 correct"><input type=
=3D"radio" name=3D"q521586:17_answer" value=3D"0" id=3D"q521586:17_answerfa=
lse" disabled=3D"disabled" checked=3D"checked"><label for=3D"q521586:17_ans=
werfalse" class=3D"m-l-1">False</label> <i class=3D"icon fa fa-check text-s=
uccess fa-fw " aria-hidden=3D"true" title=3D"Correct" aria-label=3D"Correct=
"></i></div></div></div></div><div class=3D"outcome clearfix"><h4 class=3D"=
accesshide">Feedback</h4><div class=3D"feedback"><div class=3D"rightanswer"=
>The correct answer is 'False'.</div></div></div></div></div><div id=3D"q18=
" class=3D"que truefalse deferredfeedback correct"><div class=3D"info"><h3 =
class=3D"no">Question <span class=3D"qno">18</span></h3><div class=3D"state=
">Correct</div><div class=3D"grade">Mark 1.00 out of 1.00</div><div class=
=3D"questionflag editable" aria-atomic=3D"true" aria-relevant=3D"text" aria=
-live=3D"assertive" id=3D"yui_3_17_2_1_1673051939386_177">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p>MySQL
adalah database management system (manajemen basis data) menggunakan perint=
ah
dasar SQL (Structured Query Language).<br></p></div><div class=3D"ablock"><=
div class=3D"prompt">Select one:</div><div class=3D"answer"><div class=3D"r=
0 correct"><input type=3D"radio" name=3D"q521586:18_answer" value=3D"1" id=
=3D"q521586:18_answertrue" disabled=3D"disabled" checked=3D"checked"><label=
for=3D"q521586:18_answertrue" class=3D"m-l-1">True</label> <i class=3D"ico=
n fa fa-check text-success fa-fw " aria-hidden=3D"true" title=3D"Correct" a=
ria-label=3D"Correct"></i></div><div class=3D"r1"><input type=3D"radio" nam=
e=3D"q521586:18_answer" value=3D"0" id=3D"q521586:18_answerfalse" disabled=
=3D"disabled"><label for=3D"q521586:18_answerfalse" class=3D"m-l-1">False</=
label> </div></div></div></div><div class=3D"outcome clearfix"><h4 class=3D=
"accesshide">Feedback</h4><div class=3D"feedback"><div class=3D"rightanswer=
">The correct answer is 'True'.</div></div></div></div></div><div id=3D"q19=
" class=3D"que truefalse deferredfeedback correct"><div class=3D"info"><h3 =
class=3D"no">Question <span class=3D"qno">19</span></h3><div class=3D"state=
">Correct</div><div class=3D"grade">Mark 1.00 out of 1.00</div><div class=
=3D"questionflag editable" aria-atomic=3D"true" aria-relevant=3D"text" aria=
-live=3D"assertive" id=3D"yui_3_17_2_1_1673051939386_186">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p></p><h2><a name=3D"_Toc117624884"><b><span lang=3D"IN">Fungsi Java=
script</span></b></a><b><span lang=3D"IN"></span></b></h2>
<p><span lang=3D"IN">Membuat Aplikasi Mobile</span></p>
<p><span lang=3D"IN">Javascript
dapat digunakan untuk membuat aplikasi mobile dengan menggunakan framework.=
Framework
Javascript yang digunakan untuk membuat aplikasi mobile adalah React Native=
.
Dengan framework ini, developer hanya perlu menuliskan kode satu kali untuk
Android maupun iOS.</span></p><br><p></p></div><div class=3D"ablock"><div c=
lass=3D"prompt">Select one:</div><div class=3D"answer"><div class=3D"r0 cor=
rect"><input type=3D"radio" name=3D"q521586:19_answer" value=3D"1" id=3D"q5=
21586:19_answertrue" disabled=3D"disabled" checked=3D"checked"><label for=
=3D"q521586:19_answertrue" class=3D"m-l-1">True</label> <i class=3D"icon fa=
fa-check text-success fa-fw " aria-hidden=3D"true" title=3D"Correct" aria-=
label=3D"Correct"></i></div><div class=3D"r1"><input type=3D"radio" name=3D=
"q521586:19_answer" value=3D"0" id=3D"q521586:19_answerfalse" disabled=3D"d=
isabled"><label for=3D"q521586:19_answerfalse" class=3D"m-l-1">False</label=
> </div></div></div></div><div class=3D"outcome clearfix"><h4 class=3D"acce=
sshide">Feedback</h4><div class=3D"feedback"><div class=3D"rightanswer">The=
correct answer is 'True'.</div></div></div></div></div><div id=3D"q20" cla=
ss=3D"que truefalse deferredfeedback correct"><div class=3D"info"><h3 class=
=3D"no">Question <span class=3D"qno">20</span></h3><div class=3D"state">Cor=
rect</div><div class=3D"grade">Mark 1.00 out of 1.00</div><div class=3D"que=
stionflag editable" aria-atomic=3D"true" aria-relevant=3D"text" aria-live=
=3D"assertive" id=3D"yui_3_17_2_1_1673051939386_195">
<input type=3D"image" class=3D"questionflagimage" src=3D"http://ti.lab.guna=
darma.ac.id/praktikum/theme/image.php/boost/core/1617205489/i/unflagged" ti=
tle=3D"Flag this question for future reference" alt=3D"Not flagged"><span c=
lass=3D"questionflagtext" title=3D"Flag this question for future reference"=
>Flag question</span></div></div><div class=3D"content"><div class=3D"formu=
lation clearfix"><h4 class=3D"accesshide">Question text</h4><div class=3D"q=
text"><p></p><p><strong><span lang=3D"EN-ID">React JS</span></strong><span =
lang=3D"EN-ID"> adalah Library
Javascript yang bersifat open source yang mayoritas digunakan dalam fronten=
d
untuk membangun user interface (UI) secara spesifik untuk satu page dalam
aplikasi. React JS berfungsi untuk mengatur layer pada tampilan untuk deskt=
op
maupun versi mobile aplikasi.</span></p><br><p></p></div><div class=3D"ablo=
ck"><div class=3D"prompt">Select one:</div><div class=3D"answer"><div class=
=3D"r0 correct"><input type=3D"radio" name=3D"q521586:20_answer" value=3D"1=
" id=3D"q521586:20_answertrue" disabled=3D"disabled" checked=3D"checked"><l=
abel for=3D"q521586:20_answertrue" class=3D"m-l-1">True</label> <i class=3D=
"icon fa fa-check text-success fa-fw " aria-hidden=3D"true" title=3D"Correc=
t" aria-label=3D"Correct"></i></div><div class=3D"r1"><input type=3D"radio"=
name=3D"q521586:20_answer" value=3D"0" id=3D"q521586:20_answerfalse" disab=
led=3D"disabled"><label for=3D"q521586:20_answerfalse" class=3D"m-l-1">Fals=
e</label> </div></div></div></div><div class=3D"outcome clearfix"><h4 class=
=3D"accesshide">Feedback</h4><div class=3D"feedback"><div class=3D"rightans=
wer">The correct answer is 'True'.</div></div></div></div></div><div class=
=3D"submitbtns"></div></div></form><div class=3D"submitbtns"><a class=3D"mo=
d_quiz-next-nav" href=3D"http://ti.lab.gunadarma.ac.id/praktikum/mod/quiz/v=
iew.php?id=3D38736">Finish review</a></div></div>
=20
</div>
</section>
<section data-region=3D"blocks-column" class=3D"hidden-prin=
t">
<aside id=3D"block-region-side-pre" class=3D"block-regi=
on" data-blockregion=3D"side-pre" data-droptarget=3D"1"><a href=3D"http://t=
i.lab.gunadarma.ac.id/praktikum/mod/quiz/review.php?attempt=3D515958#sb-1" =
class=3D"sr-only sr-only-focusable">Skip <span id=3D"mod_quiz_navblock_t=
itle">Quiz navigation</span></a>
<aside id=3D"mod_quiz_navblock" class=3D" block block__fake card m-b-1" ro=
le=3D"navigation" data-block=3D"_fake" aria-labelledby=3D"instance-0-header=
">
<div class=3D"card-block">
<h3 id=3D"instance-0-header" class=3D"card-title"><span id=3D"m=
od_quiz_navblock_title">Quiz navigation</span></h3>
<div class=3D"card-text content">
<div class=3D"qn_buttons clearfix allquestionsononepage"><a cla=
ss=3D"qnbutton correct free btn btn-secondary thispage" id=3D"quiznavbutton=
1" title=3D"Correct" data-quiz-page=3D"0" href=3D"http://ti.lab.gunadarma.a=
c.id/praktikum/mod/quiz/review.php?attempt=3D515958#"><span class=3D"thispa=
geholder"></span><span class=3D"trafficlight"></span><span class=3D"accessh=
ide">Question </span>1<span class=3D"accesshide"> This page <span class=3D"=
flagstate"></span></span></a><a class=3D"qnbutton correct free btn btn-seco=
ndary thispage" id=3D"quiznavbutton2" title=3D"Correct" data-quiz-page=3D"0=
" href=3D"http://ti.lab.gunadarma.ac.id/praktikum/mod/quiz/review.php?attem=
pt=3D515958#q2"><span class=3D"thispageholder"></span><span class=3D"traffi=
clight"></span><span class=3D"accesshide">Question </span>2<span class=3D"a=
ccesshide"> This page <span class=3D"flagstate"></span></span></a><a class=
=3D"qnbutton correct free btn btn-secondary thispage" id=3D"quiznavbutton3"=
title=3D"Correct" data-quiz-page=3D"0" href=3D"http://ti.lab.gunadarma.ac.=
id/praktikum/mod/quiz/review.php?attempt=3D515958#q3"><span class=3D"thispa=
geholder"></span><span class=3D"trafficlight"></span><span class=3D"accessh=
ide">Question </span>3<span class=3D"accesshide"> This page <span class=3D"=
flagstate"></span></span></a><a class=3D"qnbutton correct free btn btn-seco=
ndary thispage" id=3D"quiznavbutton4" title=3D"Correct" data-quiz-page=3D"0=
" href=3D"http://ti.lab.gunadarma.ac.id/praktikum/mod/quiz/review.php?attem=
pt=3D515958#q4"><span class=3D"thispageholder"></span><span class=3D"traffi=
clight"></span><span class=3D"accesshide">Question </span>4<span class=3D"a=
ccesshide"> This page <span class=3D"flagstate"></span></span></a><a class=
=3D"qnbutton correct free btn btn-secondary thispage" id=3D"quiznavbutton5"=
title=3D"Correct" data-quiz-page=3D"0" href=3D"http://ti.lab.gunadarma.ac.=
id/praktikum/mod/quiz/review.php?attempt=3D515958#q5"><span class=3D"thispa=
geholder"></span><span class=3D"trafficlight"></span><span class=3D"accessh=
ide">Question </span>5<span class=3D"accesshide"> This page <span class=3D"=
flagstate"></span></span></a><a class=3D"qnbutton correct free btn btn-seco=
ndary thispage" id=3D"quiznavbutton6" title=3D"Correct" data-quiz-page=3D"1=
" href=3D"http://ti.lab.gunadarma.ac.id/praktikum/mod/quiz/review.php?attem=
pt=3D515958#q6"><span class=3D"thispageholder"></span><span class=3D"traffi=
clight"></span><span class=3D"accesshide">Question </span>6<span class=3D"a=
ccesshide"> This page <span class=3D"flagstate"></span></span></a><a class=
=3D"qnbutton correct free btn btn-secondary thispage" id=3D"quiznavbutton7"=
title=3D"Correct" data-quiz-page=3D"1" href=3D"http://ti.lab.gunadarma.ac.=
id/praktikum/mod/quiz/review.php?attempt=3D515958#q7"><span class=3D"thispa=
geholder"></span><span class=3D"trafficlight"></span><span class=3D"accessh=
ide">Question </span>7<span class=3D"accesshide"> This page <span class=3D"=
flagstate"></span></span></a><a class=3D"qnbutton correct free btn btn-seco=
ndary thispage" id=3D"quiznavbutton8" title=3D"Correct" data-quiz-page=3D"1=
" href=3D"http://ti.lab.gunadarma.ac.id/praktikum/mod/quiz/review.php?attem=
pt=3D515958#q8"><span class=3D"thispageholder"></span><span class=3D"traffi=
clight"></span><span class=3D"accesshide">Question </span>8<span class=3D"a=
ccesshide"> This page <span class=3D"flagstate"></span></span></a><a class=
=3D"qnbutton correct free btn btn-secondary thispage" id=3D"quiznavbutton9"=
title=3D"Correct" data-quiz-page=3D"1" href=3D"http://ti.lab.gunadarma.ac.=
id/praktikum/mod/quiz/review.php?attempt=3D515958#q9"><span class=3D"thispa=
geholder"></span><span class=3D"trafficlight"></span><span class=3D"accessh=
ide">Question </span>9<span class=3D"accesshide"> This page <span class=3D"=
flagstate"></span></span></a><a class=3D"qnbutton correct free btn btn-seco=
ndary thispage" id=3D"quiznavbutton10" title=3D"Correct" data-quiz-page=3D"=
1" href=3D"http://ti.lab.gunadarma.ac.id/praktikum/mod/quiz/review.php?atte=
mpt=3D515958#q10"><span class=3D"thispageholder"></span><span class=3D"traf=
ficlight"></span><span class=3D"accesshide">Question </span>10<span class=
=3D"accesshide"> This page <span class=3D"flagstate"></span></span></a><a c=
lass=3D"qnbutton correct free btn btn-secondary thispage" id=3D"quiznavbutt=