NEW
Font size
WorksheetsDigital Design Midterm Review
Total questions: 30
Worksheet time: 30mins
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.
Wide Area Network (WAN)
Local Area Network (LAN)
Metropolitan Area Network (MAN)
System-Area Network (SAN)
Select the protocol
http://
www.
school.edu
index.html
Identify the document in the domain name
http://
www.
school.edu
index.html
Identify a top-level domain
.com
FTP
https
www.
As a web designer why is it important to know which browser users prefer the most?
not all browsers render web content exactly the same way
web content looks exactly the same across every browser and device
to transform HTML documents into a visual representation
for better user experience
Why does web page rendering matter?
to transform HTML documents into a visual representation
for better user experience
if the web page does not load in 3 seconds 40% of users leave the web page.
so that web content looks exactly the same across every browser and device
Used to transfer files between a client and a server on a network
HTTPS
HTTP (Hypertext Transfer Protocol)
Web Hosting
FTP (File Transfer Protocol)
Identify an IP Address
123 IP Beatties Ford Road
11001110011101
74.172.238.1
0.1.0.0.1.0.1.1.1.1.0.0.0.
According to w3 Counter, what browser has the most market share?
Firefox
Google Chrome
Safari
Microsoft Edge
What does HTML stand for?
Hyperlinks and Text Markup Language
Hyper Text Markup Language
Home Tool Markup Language
Hyper Text Manipulation Language
Which of these is a properly formatted link?
<a link="www.google.com">Link</a>
<a href="www.google.com"/>
<link location="www.google.com">Link</a>
<a href="www.google.com">Link</a>
How can you open a link in a new tab/browser window?
<a href="url" target="new">
<a href="url" target="_blank">
<a href="url" new>
Choose the correct HTML tag for the largest heading.
<heading>
<h1>
<header>
<h6>
Which doctype is correct for HTML5?
<!DOCTYPE HTML5>
<!DOCTYPE html>
<!DOCTYPE HTML PUBLIC>
What is the correct HTML5 element for playing video files?
<movie>
<video>
<source>
<mp4>
What is the correct HTML for inserting an image?
<img src="image.gif" alt="MyImage">
<image src="image.gif" alt="MyImage">
<img href="image.gif" alt="MyImage">
<img alt="MyImage">image.gif</img>
The DOM is
a standard for transmitting documents across the Internet
a standard for creating well-structured documents
an acronym for Direct Object Manipulation
Every well-formed HTML document should include:
doctype, head, body
doctype, header, body
header, nav, footer
alt text
Which tag represents a line break?
<b>
<br>
<span>
<break>
All of the content you wish to appear on the screen should be in which tag?
<html>
<head>
<body>
<main>
Which of the following is a properly formatted link?
<a href = "www.wikipedia.org">wikipedia.org</a>
<a src = "www.wikipedia.org">wikipedia.org</a>
<a link = "www.wikipedia.org">wikipedia.org</a>
<link href = "www.wikipedia.org">wikipedia.org</a>
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"?
blue
black
green
red
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"?
blue
black
yellow
red
What is the correct HTML for referring to an external style sheet?
<link rel="stylesheet" href="mystyle.css">
<link rel="stylesheet" url="mystyle.css">
<link rel="stylesheet" url="mystyle.css">
<link rel="stylesheet" src="mystyle.css">
The link to connect the external style sheet should be in the:
Meta-data - <head>
Document type
Displayable content
The # symbol specifies that the selector is a/an
tag
class
id
first
In the following code snippet, what value is given for the top margin?
margin: 15px 10px 5px 25px;
5px
15px
10px
25px
In the following code snippet, what value is given for the left margin?
margin: 5px 10px 3px 8px;
5px
10px
3px
8px
Which rule will change the text color of p elements with the class "highlight" when hovered over?
p:hover > highlight{ color:green; }
p:hover > highlight{ color:green; }
.highlight:hover{ color:green; }
p:hover{ color:green; }
A group of computers that are confined to a small geographic area, usually one building.
Wide Area Network (WAN)
Local Area Network (LAN)
Campus Area Network (CAN)
Virtual Private Network (VPN)
