wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

HTML Pop QUIZ

Total questions: 23

Worksheet time: 13mins

Name
Class
Date
1.

Select the tags below:

a)

<body>

b)

/body

c)

<p>

d)

<img>

2.

The ______________ object is a built-in JavaScript object. It allows you to get the user's local time by accessing the computer system clock through the browser. 

a)

document

b)

navigator

c)

Date

d)

write

3.

Which answer is not a tag?

a)

<body>

b)

/body

c)


<p>

d)

<img>

4.

Which tag is used to display a heading such as "Welcome to my Webpage?"

a)

<body>

b)

<img src = >

c)


<head>

d)

<h1>

5.

Which tags are used to create a paragraph?

a)

<body></body>

b)

<img src = ></img>

c)

<p></p>

d)

<h1></h1>

6.

What language is used to define the structure of a webpage?

a)

HTML

b)

CSS

c)

JavaScript

d)

French

7.

What is the purpose of HTML?

a)

To control space and time

b)

To create webpages

c)

To confuse and infuriate user

d)

To provide Webpage security

8.

Where is the link tag for an external CSS style sheet located?

a)

between the <head> tags

b)

between the <body> tags

c)

above the <html> tags

d)


below the last tag

9.

Which tag is used to display/contain all things shown on the webpage?

a)

<body>

b)


/body

c)

<p>

d)

<img>

10.

What is HTML?

a)

HyperText Markup Language

b)

HighTower Makeup Language

c)

Plain Text on Documents

d)

Expensive Types of Candy

11.

A function that models  characteristics of abstract or real objects using classes

a)

method

b)


object

c)

value

d)

property

12.

An action performed by object

a)

method

b)


object

c)

value

d)

property

13.

Descriptive characteristic of an object ex.  width, height

a)

method

b)

object

c)

value

d)

property

14.

The specific quality of a property, such as a specified width = 150 or height =200

a)

method

b)

object

c)

value

d)

property

15.

Which tag is an end tag?

a)


<body>

b)


</body>

c)

<p>

d)

<img>

16.

JavaScript is ____________-driven.

a)

Easy

b)

Event 

c)

Scripting

d)


Object based

17.

What tags are used to reference Java programing in webpages?

a)

<reference>

b)


<java>

c)

<applet>

d)

<javascript>

18.

What type of language is JavaScript?

a)

object-syncing

b)

object-oriented

c)

Scripting

d)

Compiled

19.

Which programming language was in the mind of the author when they created JavaScript?

a)

Netscape

b)

Linux

c)

Java

d)

C# programming

20.

A programmer is creating an application that needs to store a value indicating if the user is logged in or not. Which of the following would be the BEST data type to accomplish this?

a)

Integer

b)

String

c)

Float

d)

Boolean

21.

A developer is creating an application that requires a value to be stored with decimal precision. Which of the following data types should be used for the variables that will store these values?

a)

Integer

b)

String

c)

Float

d)

Boolean

22.

A developer is creating a program that will store a customer's latest order number. The value will change each time a customer creates a new order. Which of the following would MOST likely be used to store the value?

a)

Constant

b)

Object

c)


Array

d)

Variable

23.

After running the following pseudocode, what will the value of VARIABLE be?

Set value of VARIABLE to 5

Increase the value of VARIABLE by 3

If the value of VARIABLE is odd, increase its value by 1

If the value of VARIABLE is even, increase its value by 1

If the value of VARIABLE is odd, increase its value by 1

a)

8

b)

9

c)

10

d)

11