Search Header Logo
UTS Pemrograman Web

UTS Pemrograman Web

Assessment

Presentation

Education, Instructional Technology, Computers

1st - 10th Grade

Medium

Created by

Nuiza Ma'ruf

Used 11+ times

FREE Resource

0 Slides • 43 Questions

1

Multiple Choice

Salah satu dokumen website yang bertujuan untuk mengatur gaya (style) tampilan website adalah

1

HTML

2

JavaScript

3

PHP

4

CSS

2

Multiple Choice

Tiga Struktur dasar Tag HTML yaitu…

1

title – head – body

2

html – head – title

3

html – head– body

4

html – title – table

3

Multiple Choice

Perintah untuk mengganti baris pada HTML adalah...

1

<br>

2

<tr>

3

<td>

4

<li>

4

Multiple Choice

Pasangan hasil yang sesuai untuk pemformatan dengan tag <u> dan <i> secara berurutan adalah …

1

satu dan dua

2

satu dan dua

3

satu dan dua

4

satu dan dua

5

Multiple Choice

Penulisan DOCTYPE yang benar dalaman HTML 5 adalah

1

<html>

2

<DOCTYPE>

3

<!DOCTYPE HTML5>

4

<!DOCTYPE HTML>

6

Multiple Choice

berikut ini yang bukan termasuk tag untuk membuat heading adalah......

1

<h4>

2

semua benar

3

<h5>

4

<h7>

7

Multiple Choice

What defines the beginning and ending of the visible part of a webpage?

1

<head> main part of the document </body>

2

<body> main part of the document </html>

3

d) </body> main part of the document <html>

4

<body> main part of the document </body>

8

Multiple Choice

Which set contains all of the DEFAULT tags needed to create a webpage?

1

<!DOCTYPE html>

<html>

<head>

</head>

<body>

<main>

</main>

</body>

</html>

2

<html>

<head>

</head>

<body>

</body>

</html>

3

<!DOCTYPE html>

<html>

<head>

</head>

</html>

4

<!DOCTYPE html>

<html>

<head>

</head>

<body>

</body>

5

<!DOCTYPE html>

<html>

<head>

<title>

</title>

</head>

<body>

</body>

</html>

9

Multiple Choice

What is CSS?

1

Cats Seeking Shelter

2

Cascading Style Sheets

3

Campers Sleeping Silently

4

Code Syncing Selectors

10

Multiple Choice

Dalam alur pengembangan aplikasi web kegiatan yang digunakan untuk menghitung estimasi biaya proyek pembuatan aplikasi berbasis web disebut ...

     

1

Formulasi

2

Perencanaan

3

Rekayasa

4

Planning

11

Multiple Choice

Question image

Untuk membuat tabel seperti di bawah, mana tag html yang benar ?

1

<body>

<table >

<tr>

<td> Tanggal <td> 

27 Oktober 2016<td

</tr>

<tr>

<td> Jam<td> 

<td> 08.00 </tr>

</table>

</body>

2

<body>

<table>

<tr>

<th>Tanggal</th> 

<th>27 Oktober 2016</th>

</tr>

<tr>

<td> Jam </td>

<td> 08.00 </td>

</tr>

</table>

</body>

3

 <body>

<table >

<td>

<tr> Tanggal 

<tr> 27 Oktober 2016</tr>

<td>

<tr> Jam 

<tr> 08.00 </tr>

</table>

</body>

4

<body>

<table >

<tr>

<td> Tanggal 

<td> 27 Oktober 2016</tr>

<tr>

<td> Jam 

<td> 08.00 </tr>

</table>

</body>

12

Multiple Choice

Match the correct end tag...

<p>

1

<p/>

2

<\p>

3

</p>

4

</P>

13

Multiple Choice

This tag defines an element of a list.

1

<li>

2

<el>

3

<ol>

4

<ul>

14

Multiple Choice

Cara penulisan komentar pada HTML adalah...

1

<!- -  - ->

2

</!- -  - ->

3

<!- -  - -/>

4

/!- -  - -/

15

Multiple Choice

Untuk menerima masukan berupa pilihan yang dapat dipilih lebih dari satu yaitu...

1

Radio

2

Submit

3

Checkbox

4

Text

16

Multiple Choice

Which tag is used to define a table?

1

<table>

2

<t>

3

<tab>

4

<b>

17

Multiple Choice

Question image

What does "style" define for the HTML shown in the image?

1

the color & alignment of the text

2

the size of the text

3

the background color

4

the body of the text

18

Multiple Choice

Question image

What part of the code indicates the url address of the link?

1

a

2

body

3

/a

4

href

19

Multiple Choice

Question image

Based on the HTML code, what website is the link set to go to?

3

there is not a tag for a link

20

Multiple Choice

Question image

Based on the HTML code on the left, what will appear in the browser's address bar or on the page tab?

1

HTML Elements Reference

2

Basic HTML

3

DOCTYPE

4

The code does not define this information

21

Multiple Choice

Question image

Based on the image, which of the following is true?

1

All paragraphs will be centered

2

The heading will be small and red font

3

One of the paragraphs will be in red font

4

One of the paragraphs will be black font and red background

22

Multiple Choice

Ciri Khas dari HTML ?

1

Tag

2

Tagar

3

Header

4

Heading

23

Multiple Choice

Question image

Analisis gambar disamping, HTML merupakan ......... dari halaman web.

1

kerangka

2

aksesoris

3

hiasan

4

dasar

24

Multiple Choice

Question image

Apa yang salah pada codingan ini?

1

Tidak ada </main>

2

Tidak ada </body>

3

Tidak ada </html>

4

Tidak ada <head>

5

Codingan ini sudah benar

25

Multiple Choice

Bagaimanakah perintah HTML agar muncul input type password ....

1

<td><input type="password" name="alamat"</td>

2

<td><input type="name" name="password"</td>

3

<td><input type="password" password="alamat"</td>

4

<td><input type="word" name="password"</td

26

Multiple Choice

Fungsi dari <textarea> adalah ....

1

Untuk membuat sebuah kotak teks multi baris.

2

Untuk membuat sebuah daftar pilihan

3

Untuk membuat komponen-komponen yang digunakan untuk meminta informasi dari user

4

Untuk membuat kotak teks

27

Multiple Choice

What is the correct HTML for adding a table background color?

1

<Table bgcolor="pink">

2

<Table backgroundcolor=

"pink">

3

<Table bgcolour="pink">

4

None of these

28

Multiple Choice

How to create web forms in HTML?

1

<FRAME>

2

<FORM>

3

<A>

4

<IMG>

29

Multiple Choice

Some tags you have to close with a /

Example: <h1> My Project </h1>

1

True

2

False

30

Multiple Choice

<a href="https://www.picturelocation"> Click me </a>

Is this coded correctly?

1

Yes

2

No

31

Multiple Choice

When a link or hyperlink is purple and not blue, it means...

1

That you have never ever clicked on it

2

You have already clicked on it

3

It is a virus

32

Multiple Choice

Penggunaan sebagaian space di Web Server untuk meletakkan File Web site disebut dengan:

1

Spacing

2

Servering

3

Domian

4

Control Panel

5

Hosting

33

Multiple Choice

Istilah yang pertama kali digunakan oleh Jorn Barger pada bulan Des 1997 untuk menyebut kelompok website pribadi yang selalu diupdate secara kontinyu dan berisi link-link ke website lain yang mereka anggap menarik disertai dengan komentar-komentar mereka sendiri disebut dengan:

1

Blog/Web Blog

2

Website

3

Internet

4

Intranet

5

Ekstranet

34

Multiple Choice

Situs yang memiliki updating seperti Blog, Portal dan Sosial Network termasuk ke dalam jenis Web

1

Web Static

2

Web Portal

3

Sosial Network

4

Sosial Media

5

Web Dinamis

35

Multiple Choice

Manakah berukit ini yang bukan merupakan masalah pemrograman Web?

1

Mengapa data article misalnya tidak disimpan dalam bentuk HTML files dalam direktori?

2

Programer menggunakan text editor, designer menggunakan web design tool dan FTP untuk upload, dll

3

Bila salah script yang diupload bisa merusak sistem

4

Sulit untuk pengaturan authentication

5

Sulit untuk mengakses data

36

Multiple Choice

Seorang Web designer harus memiliki wawasan dalam bidang IMK (Interaksi Manusia dan Komputer), sehingga dapat membuat desain web yang.....

1

user friendly

2

user interface

3

user oriented

4

user support

5

user handle

37

Multiple Choice

Secara umum, tag diartikan sebagai pembatas atau pemisah antara bagian yang satu dalam dokumen HTML lainnya. Suatu file teks yang tersusun atas tag-tag tertentu disebut …

1

Halaman web

2

Dokumen HTML

3

Halaman HTML

4

HTML

38

Multiple Choice

Secara umum, tag diartikan sebagai pembatas atau pemisah antara bagian yang satu dalam dokumen HTML lainnya. Dimana, tag HTML mengikuti aturan standar yang telah didefinisikan oleh …

1

World Wide Web Consortium (W3C)

2

World Wide Web (WWW)

3

W3schools

4

HTML

39

Multiple Choice

Question image

Web bekerja sesuai dengan ilustrasi gambar tersebut, dimana A dan B merupakan …

1

Web dan script HTML

2

HTML dan PHP

3

Web browser dan web server

4

Web browser dan database

40

Multiple Choice

Tag HTML yang benar untuk heading terkecil adalah …

1

<heading>

2

<h7>

3

<h1>

4

<h6>

41

Multiple Choice

Perhatikan potongan script HTML berikut !

<h1><ins>Pengertian HTML</ins></h1>

Fungsi dari script diatas adalah …

1

Menampilkan teks Pengertian HTML yang diberi garis bawah dengan ukuran heading besar

2

Menampilkan teks Pengertian HTML yang diberi garis bawah dengan ukuran heading kecil

3

Menampilkan teks Pengertian HTML yang diberi garis terhapus dengan ukuran heading besar

4

Menampilkan teks Pengertian HTML yang diberi garis bawah

42

Multiple Choice

Script sederhana HTML

<!DOCTYPE html>

<html>

<head> <title>kuis</title> </head>

<body>

<p><em>Belajar buat <strong>web</strong> !</em></p>

</body>

</html>

Script HTML diatas akan menghasilkan …

1

Belajar buat web !

2

Belajar Buat Web !

3

belajar buat web !

4

Belajar buat web !

43

Multiple Choice

List merupakan bagian teks di dalam dokumen yang berisi daftar item dari suatu kelompok atau grup tertentu. Berikut ini tipe dari list yakni …

1

Ordered list

2

Unordered list

3

Definition list

4

Semua benar

Salah satu dokumen website yang bertujuan untuk mengatur gaya (style) tampilan website adalah

1

HTML

2

JavaScript

3

PHP

4

CSS

Show answer

Auto Play

Slide 1 / 43

MULTIPLE CHOICE