wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Digital Design Midterm Review

Total questions: 30

Worksheet time: 30mins

Name
Class
Date
1.

This network can connect different offices in different cities or countries, but can also run much shorter distances such as connecting different buildings in the same city. Select the correct network.

a)

Wide Area Network (WAN)

b)

Local Area Network (LAN)

c)

Metropolitan Area Network (MAN)

d)

System-Area Network (SAN)

2.

Select the protocol

a)

http://

b)

www.

c)

school.edu

d)

index.html

3.

Identify the document in the domain name

a)

http://

b)

www.

c)

school.edu

d)

index.html

4.

Identify a top-level domain

a)

.com

b)

FTP

c)

https

d)

www.

5.

As a web designer why is it important to know which browser users prefer the most?

a)

not all browsers render web content exactly the same way

b)

web content looks exactly the same across every browser and device

c)

to transform HTML documents into a visual representation

d)

for better user experience

6.

Why does web page rendering matter?

a)

to transform HTML documents into a visual representation

b)

for better user experience

c)

if the web page does not load in 3 seconds 40% of users leave the web page.

d)

so that web content looks exactly the same across every browser and device

7.

Used to transfer files between a client and a server on a network

a)

HTTPS

b)

HTTP (Hypertext Transfer Protocol)

c)

Web Hosting

d)

FTP (File Transfer Protocol)

8.

Identify an IP Address

a)

123 IP Beatties Ford Road

b)

11001110011101

c)

74.172.238.1

d)

0.1.0.0.1.0.1.1.1.1.0.0.0.

9.

According to w3 Counter, what browser has the most market share?

a)

Firefox

b)

Google Chrome

c)

Safari

d)

Microsoft Edge

10.

What does HTML stand for?

a)

Hyperlinks and Text Markup Language

b)

Hyper Text Markup Language

c)

Home Tool Markup Language

d)

Hyper Text Manipulation Language

11.

Which of these is a properly formatted link?

a)

<a link="www.google.com">Link</a>

b)

<a href="www.google.com"/>

c)

<link location="www.google.com">Link</a>

d)

<a href="www.google.com">Link</a>

12.

How can you open a link in a new tab/browser window?

a)

<a href="url" target="new">

b)

<a href="url" target="_blank">

c)

<a href="url" new>

13.

Choose the correct HTML tag for the largest heading.

a)

<heading>

b)

<h1>

c)

<header>

d)

<h6>

14.

Which doctype is correct for HTML5?

a)

<!DOCTYPE HTML5>

b)

<!DOCTYPE html>

c)

<!DOCTYPE HTML PUBLIC>

15.

What is the correct HTML5 element for playing video files?

a)

<movie>

b)

<video>

c)

<source>

d)

<mp4>

16.

What is the correct HTML for inserting an image?

a)

<img src="image.gif" alt="MyImage">

b)

<image src="image.gif" alt="MyImage">

c)

<img href="image.gif" alt="MyImage">

d)

<img alt="MyImage">image.gif</img>

17.

The DOM is

a)

a standard for transmitting documents across the Internet

b)

a standard for creating well-structured documents

c)

an acronym for Direct Object Manipulation

18.

Every well-formed HTML document should include:

a)

doctype, head, body

b)

doctype, header, body

c)

header, nav, footer

d)

alt text

19.

Which tag represents a line break?

a)

<b>

b)

<br>

c)

<span>

d)

<break>

20.

All of the content you wish to appear on the screen should be in which tag?

a)

<html>

b)

<head>

c)

<body>

d)

<main>

21.

Which of the following is a properly formatted link?

a)

<a href = "www.wikipedia.org">wikipedia.org</a>

b)

<a src = "www.wikipedia.org">wikipedia.org</a>

c)

<a link = "www.wikipedia.org">wikipedia.org</a>

d)

<link href = "www.wikipedia.org">wikipedia.org</a>

22.

Assume that this code is linked together correctly.

 

p{

color: blue;

padding:10px 5px;

background: black;

}

.fancy{

font-family: cursive;

background: red;

color: green;

}

.plain{

font-family: Times, serif;

color: black;

}

 

<p>Hi</p>

 

What color font is used to display "Hi"?

a)

blue

b)

black

c)

green

d)

red

23.

p{

color: yellow;

padding:10px 5px;

background: black;

}

#plan{

font-family: cursive;

background: red;

color: blue;

}

.plan{

font-family: Times, serif;

color: black;

}

 

<p class = "plan">Hello</p>

 

What color font is used to display "Hello"?

a)

blue

b)

black

c)

yellow

d)

red

24.

What is the correct HTML for referring to an external style sheet?

a)

<link rel="stylesheet" href="mystyle.css">

b)

<link rel="stylesheet" url="mystyle.css">

c)

<link rel="stylesheet" url="mystyle.css">

d)

<link rel="stylesheet" src="mystyle.css">

25.

The link to connect the external style sheet should be in the:

a)

Meta-data - <head>

b)

Document type

c)

Displayable content

26.

The # symbol specifies that the selector is a/an

a)

tag

b)

class

c)

id

d)

first

27.

In the following code snippet, what value is given for the top margin?

margin: 15px 10px 5px 25px;

a)

5px

b)

15px

c)

10px

d)

25px

28.

In the following code snippet, what value is given for the left margin?

margin: 5px 10px 3px 8px;

a)

5px

b)

10px

c)

3px

d)

8px

29.

Which rule will change the text color of p elements with the class "highlight" when hovered over?

a)

p:hover > highlight{ color:green; }

b)

p:hover > highlight{ color:green; }

c)

.highlight:hover{ color:green; }

d)

p:hover{ color:green; }

30.

A group of computers that are confined to a small geographic area, usually one building.

a)

Wide Area Network (WAN)

b)

Local Area Network (LAN)

c)

Campus Area Network (CAN)

d)

Virtual Private Network (VPN)