wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Conversion, Paths, and HTML/CSS Quiz

Total questions: 21

Worksheet time: 11mins

Name
Class
Date
1.

What is the binary equivalent of decimal 15?

a)

1010

b)

1101

c)

1110

d)

1111

2.

What is the hexadecimal equivalent of decimal 25?

a)

1A

b)

19

c)

20

d)

18

3.

What is the decimal equivalent of binary 110?

a)

8

b)

7

c)

6

d)

9

4.

What is the decimal equivalent of hexadecimal 14?

a)

18

b)

22

c)

20

d)

24

5.

What is the hexadecimal equivalent of binary 1110?

a)

E

b)

F

c)

D

d)

B

6.

What is the binary equivalent of hexadecimal 11B?

a)

100011010

b)

100010011

c)

100011011

d)

10001001

7.

One digit in Hexa is equivalent to ________ digits in binary.

a)

3

b)

4

c)

5

d)

2

8.

The highest digit in Hexadecimal is ________________.

a)

15

b)

14

c)

E

d)

F

9.
Convert the Hex number DA to binary.
a)
11001010
b)
11011011
c)
11011010
d)
11011110
10.
Convert the binary number 01010101 to Hex
a)
44
b)
55
c)
66
d)
77
11.

What is the proper code for an unordered list?

a)

ul

b)

ol

c)

il

d)

al

12.

Which one is the largest heading?

a)

h1

b)

h2

c)

h4

d)

h6

13.

Every element of html coding must have an opening and closing tag.

a)

True

b)

False

14.

What HTML code is used to center the words on the page when the coding starts on the left margin?

a)

right-align;

b)

<center></center>

c)

left-align;

d)

<middle></middle>

15.
What is the proper code to insert an image named "frog.jpg"?
a)
<img src="frog" width="104" height="142">
b)
<img="frog.jpg" width="104" height="142">
c)
<img src="frog.jpg" width="104" height="142">
d)
<img ="frog" width="104" height"142">
16.
Which tag defines the visible content of a web document?
a)
<head>
b)
<meta>
c)
<title>
d)
<body>
17.
Which line of code correctly creates a link to Amazon's website?
a)
<a ref=http://www.amazon.com>Amazon
b)
<href=http://www.amazon.com>Amazon<a>
c)
<a href="http://www.amazon.com">Amazon
d)
<a href="http://www.amazon.com">Amazon</a>
18.

HTML stands for

a)

Hyper Text Marker Language

b)

Hyper Text Marker Lingo

c)

Hyper Text Markup Language

d)

Hyper Text Markup Lingo

19.

CSS stands for

a)

Code Style Sheet

b)

Coding Style Sheet

c)

Cascading Sheet Style

d)

Cascading Style Sheet

20.

An absolute file path is the full URL to a file and a relative file path points to a file relative to the current page.

a)

True

b)

False

21.

It is best practice to use relative file paths (if possible).

a)

True

b)

False