wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Web Systems Prelim and Premid Examination

Total questions: 50

Worksheet time: 35mins

Name
Class
Date
1.

It is the standard markup language for creating Web pages.

a)

HTML (Hyper Text Markup Language)

b)

Javascript

c)

CSS (Cascading Style Sheets)

d)

HTML tags

2.

Describes the structure of a Web page

a)

HTML elements

b)

HTML (Hyper Text Markup Language)

c)

HTML tags

d)

HTML Page Structure

3.

These are label pieces of content such as "heading", "paragraph", "table", and so on

a)

HTML (Hyper Text Markup Language)

b)

Web Browsers

c)

HTML elements

d)

HTML tags

4.

HTML tags are element names surrounded by __________.

a)

<angle brackets>

b)

(round brackets)

c)

[square brackets]

d)

(round brackets) and [square brackets]

5.

The first tag in a pair is the start tag, the second tag is the __________.

a)

new tag

b)

end tag

c)

last tag

d)

old tag

6.

The start tag is also called the ____________, and the end tag the closing tag.

a)

start tag

b)

beginning tag

c)

new tag

d)

opening tag

7.

The _______________ declaration defines this document to be HTML5

a)

<!DOCTYPE html>

b)

<html>

c)

<head>

d)

<title>

8.

The _______ element contains meta information about the document

a)

<title>

b)

<body>

c)

<h1>

d)

<head>

9.

The end tag is written like the start tag, but with a forward slash inserted before the tag name. Which is the following is an example of a correct end tag?

a)

<p>

b)

<p/>

c)

</p>

d)

</p/>

10.

The <p> element defines a ___________.

a)

title

b)

heading

c)

paragraph

d)

page content

11.

HTML tags normally come _________ like <p> and </p>

a)

in pairs

b)

in groups

c)

in one

d)

in single

12.

Above is a visualization of an HTML page structure:

Which of the following section is displayed in a browser.

a)

<body> section

b)

<head> section

c)

<title> section

d)

none of the above

13.

It must only appear once, at the top of the page (before any HTML tags).

a)

<html>

b)

<head>

c)

<body>

d)

<!DOCTYPE> declaration

14.

The _____ element defines a large heading

a)

<h2>

b)

<h1

c)

<h3>

d)

<h4>

15.

What HTML input type is used to create this form selections?

a)

<input type="text">

b)

<input type="submit">

c)

<input type="password">

d)

<input type="radio">

16.

What HTML input type is used to create this form checkbox?

a)

<input type="text">

b)

<input type="checkbox">

c)

<input type="password">

d)

<input type="radio">

17.

What HTML input type is used to create this submit button?

a)

<input type="text">

b)

<input type="submit">

c)

<input type="password">

d)

<input type="radio">

18.

What is missing in this HTML code

  <td>
    <th>Company</th>
    <th>Contact</th>
    <th>Country</th>
  </td>

(a)  

19.

What is missing/incorrect in this HTML code

<ol>
  <ul>Coffee</ul>
  <ul>Tea</ul>
  <ul>Milk</ul>
</ol>

(a)  

20.

HTML 5 is the fifth version of HTML and is a core technology mark-up language of the internet

a)

true

b)

false

21.

Which of the following is an example of an empty element?

a)

< img / >

b)

< img > < / img >

c)

< / img>

22.

< br / > What type of tag is this?

a)

Break tag

b)

A broken one

c)

An opening tag

23.

<b> html tag is the same with what html tag?

a)

<em>

b)

<strong>

c)

<weak>

24.

Which of the following is the HTML Tag for Ordered List?

a)

<ul> </ul>

b)

<ol> </ol>

25.

Which of the following is the HTML Tag for Unordered List?

a)

<ul> </ul>

b)

<ol> </ol>

26.

Complete the following Codes. Write the missing HTML Tag.


<html>

<head>

<title> Holla </title>

</head>

(a)  


Hello World.


</body>


</html>

27.

Which of the following codes shows the output given?

a)

<i>Viva Las Vegas!</i>

<i>Viva Las Vegas!</i>

b)

<i><b>Viva Las Vegas!</i>

<i><b>Viva Las Vegas!</i>

c)

<i><b>Viva Las Vegas!</b></i>

<i><b>Viva Las Vegas!</b></i>

d)

<i><u>Viva Las Vegas!</u></i>

<i><u>Viva Las Vegas!</u></i>

28.

Which of the following is the syntax for Non-Breaking Space

a)

&nbsn;

b)

&nbs;

c)

nbsp;

d)

&nbsp;

29.

How many levels of Heading Tags are there?

a)

5

b)

6

c)

7

d)

8

30.

Which of the following is the Line Break tag?

a)

<br / >

b)

<break>

31.

This tag is used to list items on both unordered and ordered list.

a)

<list>

b)

<li>

c)

<1i>

d)

<LL>

32.

The larger the value of the number in heading tag, the smaller the output of the text?

a)

True

b)

False

33.

<i> html tag is the same with what html tag?

a)

<em>

b)

<strong>

c)

<weak>

34.

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

a)

<!DOCTYPE html>

<html>

<head>

</head>

<body>

</body>

</html>

b)

<html>

<head>

</head>

<body>

</body>

</html>

c)

<!DOCTYPE html>

<html>

<head>

</head>

</html>

d)

<!DOCTYPE html>

<html>

<head>

</head>

<body>

</body>

35.

HTML controls the _________ of a webpage.

a)

feel

b)

precision

c)

structure

d)

style

36.

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

a)

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

b)

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

c)

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

d)

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

37.

What is the correct syntax for defining a hyperlink in HTML?

a)

<a href=”url”> Link text </a>

b)

<a href=”url”> Link text <a>

c)

<a=”url”> Link text <a>

d)

<ref=”url”> Link text <a>

38.

Which character is used to indicate an end tag?

a)

!

b)

#

c)

/

d)

\

39.

Which of the following is the proper format for an HTML tag?

a)

>h1<Content Affected by Tag >/h1<

b)

<h1>Content Affected by Tag<h1>

c)

<h1 Content Affected by Tag />

d)

<h1>Content Affected by Tag</h1>

40.

What is the purpose of the <meta> tag in HTML?

a)

To define the character set

b)

To create a link to a stylesheet

c)

To add a title to the document

d)

To include JavaScript code

41.

Which HTML element is used to define a footer for a document or section?

a)

<footer>

b)

<bottom>

c)

<section>

d)

<aside>

42.

What does the <div> tag represent in HTML?

a)

A division or section in a document

b)

A hyperlink

c)

A form element

d)

A list item

43.

Which HTML tag is used to create a hyperlink?

a)

<a>

b)

<link>

c)

<href>

44.

What is the purpose of the <meta> tag in HTML?

a)

To define the character set

b)

To create a link to a stylesheet

c)

To add a footer to the document

45.

Which of the following is the correct way to create a checkbox input in HTML?

a)

<input type="checkbox">

b)

<checkbox>

c)

<input type="check">

46.

Which HTML element is used to define a navigation section?

a)

<nav>

b)

<navigation>

c)

<menu>

d)

<link>

47.

What is the purpose of the <link> tag in HTML?

a)

To link to external stylesheets

b)

To create a hyperlink

c)

To define metadata

d)

To include scripts

48.

Which of the following is the correct way to create a comment in HTML?

a)

<!-- This is a comment -->

b)

<comment> This is a comment </comment>

c)

<# This is a comment #>

d)

<* This is a comment *>

49.

Which of the following tags is used to create a dropdown list in HTML?

a)

<select>

b)

<dropdown>

c)

<list>

d)

<option>

50.

What is the purpose of the <link> tag in HTML?

a)

To link to external stylesheets

b)

To create a hyperlink

c)

To define metadata