NEW
Font size
S
M
L
XL
WorksheetsCSD Unit 2 Quiz
Total questions: 72
Worksheet time: 50mins
Name
Class
Date
1.
Headings are the different sized section titles throughout a web page.
a)
True
b)
False
2.
The collected information about an individual across multiple websites on the internet is a digital footprint.
a)
True
b)
False
3.
How many heading tags are there?
a)
2
b)
4
c)
6
d)
8
4.
Which of the following will correctly display the words above?
a)
<h3> Eggs </h3>
<h1> Bacon </h1>
<h6> Waffles </h6>
<h1> Bacon </h1>
<h6> Waffles </h6>
b)
B<h1> Eggs </h1>
<h2> Bacon </h2>
<h3> Waffles </h3>
<h2> Bacon </h2>
<h3> Waffles </h3>
c)
<h6> Eggs </h6>
<h1> Bacon </h1>
<h3> Waffles </h3>
<h1> Bacon </h1>
<h3> Waffles </h3>
d)
<h3> Eggs </h3>
<h1> Bacon </h1>
<h7> Waffles </h7>
<h1> Bacon </h1>
<h7> Waffles </h7>
5.
The smaller the number tag for headings, <h1> vs <h2>, the:
a)
smaller the heading
b)
bigger the heading
6.
The bigger the number tag for headings, <h2> vs <h1>, the:
a)
smaller the heading
b)
bigger the heading
7.
Social Network Sites: Your Address
a)
OK to share if you are comfortable sharing this information
b)
keep it private
8.
Social Network Sites: Your Phone Number
a)
OK to share if you are comfortable sharing this information
b)
keep it private
9.
Social Network Sites: Your Social Security Number
a)
OK to share if you are comfortable sharing this information
b)
keep it private
10.
Social Network Sites: Your Bank Account Number
a)
OK to share if you are comfortable sharing this information
b)
keep it private
11.
Social Network Sites: Your Schedule
a)
OK to share if you are comfortable sharing this information
b)
keep it private
12.
Social Network Sites: Your Passowrd
a)
OK to share if you are comfortable sharing this information
b)
keep it private
13.
Social Network Sites: Your Favorite Movie
a)
OK to share if you are comfortable sharing this information
b)
keep it private
14.
Social Network Sites: Your Favorite Book
a)
OK to share if you are comfortable sharing this information
b)
keep it private
15.
A quotation from or reference to a book, paper, or author, especially in a scholarly work.
a)
Citation
b)
Copyright
c)
Creative Commons
d)
Intellectual Property
16.
The exclusive legal right to print, publish, perform, film, or record literary, artistic, or musical material, and to authorize others to do the same
a)
Citation
b)
Copyright
c)
Creative Commons
d)
Intellectual Property
17.
A collection of public copyright licenses that enable the free distribution of an otherwise copyrighted work, used when an author wants to give people the right to share, use, and build upon a work that they have created
a)
Citation
b)
Copyright
c)
Creative Commons
d)
Intellectual Property
18.
A work or invention that is the result of creativity, such as a piece of writing or a design, to which one has rights and for which one may apply for a patent, copyright, trademark, etc.
a)
Citation
b)
Copyright
c)
Creative Commons
d)
Intellectual Property
19.
Part of a program that does not work correctly.
a)
Bug
b)
Comment
c)
Debugging
d)
Indentation
20.
A note in the source code of a computer program that helps explain the code to people who read it.
a)
Bug
b)
Comment
c)
Debugging
d)
Indentation
21.
The placement of text farther to the right or left of the surrounding text, making it easier to understand the program's structure.
a)
Bug
b)
Comment
c)
Debugging
d)
Indentation
22.
Finding and fixing problems in an algorithm or program.
a)
Bug
b)
Comment
c)
Debugging
d)
Indentation
23.
Any character that shows up as a blank space on the screen, such as a space, a tab, or a new line; helps separate different parts of the document to make it easier to read
a)
Bug
b)
Whitespace
c)
Debugging
d)
Indentation
24.
<ul></ul>
a)
Bulleted List
b)
Numbered List
c)
List Item
25.
<ol></ol>
a)
Bulleted List
b)
Numbered List
c)
List Item
26.
<li></li>
a)
Bulleted List
b)
Numbered List
c)
List Item
27.
Creative Commons License Elements: This elements is:
a)
Attribution: You must acknowledge the originator of the work when sharing.
b)
Non-commercial: no one else but the originator of the work is allowed to make money from the work.
c)
No Derivatives: you are not allowed to make changed to the original work.
d)
Share Alike: new creations that use CC Licenses must be shared with the same license elements.
28.
Creative Commons License Elements: This elements is:
a)
Attribution: You must acknowledge the originator of the work when sharing.
b)
Non-commercial: no one else but the originator of the work is allowed to make money from the work.
c)
No Derivatives: you are not allowed to make changed to the original work.
d)
Share Alike: new creations that use CC Licenses must be shared with the same license elements.
29.
Creative Commons License Elements: This elements is:
a)
Attribution: You must acknowledge the originator of the work when sharing.
b)
Non-commercial: no one else but the originator of the work is allowed to make money from the work.
c)
No Derivatives: you are not allowed to make changed to the original work.
d)
Share Alike: new creations that use CC Licenses must be shared with the same license elements.
30.
Creative Commons License Elements: This elements is:
a)
Attribution: You must acknowledge the originator of the work when sharing.
b)
Non-commercial: no one else but the originator of the work is allowed to make money from the work.
c)
No Derivatives: you are not allowed to make changed to the original work.
d)
Share Alike: new creations that use CC Licenses must be shared with the same license elements.
31.
A creative commons license gives anyone the ability to use a work without asking for permission first.
a)
True
b)
Fasle
32.
What needs to be fixed?
<!DOCTYPE html><html>
<head> </head>
<body> <h1>Cat Supplies</h1> Cat Toys Keep your cat entertained! <li>Lasers, Catnip Toys</li> <li>Kitty Chew Toys</li></body></html>
<!DOCTYPE html><html>
<head> </head>
<body> <h1>Cat Supplies</h1> Cat Toys Keep your cat entertained! <li>Lasers, Catnip Toys</li> <li>Kitty Chew Toys</li></body></html>
a)
Missing a heading tag.
b)
Missing list type tag.
c)
Missing list item tag.
d)
All of the above.
33.
Which set of codes renders the output?
Fruits
•Apple
•Mango
•Banana
Fruits
•Apple
•Mango
•Banana
a)
Fruits <ol> <li>Apple</li> <li>Mango</li> <li>Banana</li> </ol>
b)
Fruits <ul> <li>Apple</li> <li>Mango</li> <li>Banana</li> </ul>
34.
A link from a HTML file to another location or file, typically activated by clicking on a highlighted word or image on the screen.
a)
Hyperlink
b)
CSS
c)
CSS Selector
d)
CSS Class
35.
Cascading Style Sheets; a language used to describe how HTML elements should be styled.
a)
Hyperlink
b)
CSS
c)
CSS Selector
d)
CSS Class
36.
The part of a CSS rule-set that defines which HTML elements the style should be applied to.
a)
Hyperlink
b)
CSS
c)
CSS Selector
d)
CSS Class
37.
An identifier that allows multiple elements in an HTML document to be styled in the same way.
a)
Hyperlink
b)
CSS
c)
CSS Selector
d)
CSS Class
38.
A precise sequence of instructions for processes that can be executed by a computer.
a)
Algorithm
b)
Relevant
c)
Search Engine
d)
Trustworthy
39.
A program that searches for and identifies items in a database that correspond to keywords or characters specified by the user, used especially for finding particular sites on the World Wide Web.
a)
Algorithm
b)
Relevant
c)
Search Engine
d)
Trustworthy
40.
Able to be relied on as honest or truthful.
a)
Algorithm
b)
Relevant
c)
Search Engine
d)
Trustworthy
41.
Who is making the Web Standards?
a)
Mozilla
b)
Microsoft
c)
Google
d)
The World Wide Web Consortium (WC3)
42.
CSS language...
a)
is the language used to create Websites
b)
is the language used to create font sizes and colors
c)
is the coding used to create pictures
d)
is never used in the outside world
43.
HTML language...
a)
is the language used to create Websites
b)
is the language used to create font sizes and colors
c)
is the coding used to create pictures
d)
is never used in the outside world
44.
CSS
a)
Creative Style Sheets
b)
Cascading Style Sheets
c)
Colorful Style Spread
d)
Computer Style Spread
45.
Where in the HTML document is the correct location to insert code to link to your external CSS?
a)
In the <head> section.
b)
BIn the <body> section.
c)
At the very end of the document.
d)
At the very beginning of the document.
46.
What's the difference between HTML and CSS?
a)
CSS is one type of HTML
b)
HTML gives a webpage structure, CSS provides styling.
c)
CSS structures a webpage. HTML strictly provides styling.
d)
There is no difference.
47.
Which is the selector in the following CSS code? p{color:red;}
a)
p
b)
color:
c)
red
d)
;
48.
Which is the property in the following CSS code? p{color:red;}
a)
p
b)
color:
c)
red
d)
;
49.
Which is the value in the following CSS code? p{color:red;}
a)
p
b)
color:
c)
red
d)
;
50.
The CSS rule set, p{color:red;} will do which of the following?
a)
Turn the background color of a paragraph red.
b)
Turn the font color of a paragraph red.
c)
Turn the background color of the page red.
d)
Turn the font color of the page red.
51.
Which property value pair will affect the horizontal position of the text?
a)
color: value
b)
text-align: value
c)
text-decoration: value
d)
font-family: value
52.
Which property value pair has values such as overline, line-through, and underline?
a)
color: value
b)
text-align: value
c)
text-decoration: value
d)
font-family: value
53.
Which property value pair has values such as "Times New Roman and serif?
a)
color: value
b)
text-align: value
c)
text-decoration: value
d)
font-family: value
54.
When you use a search engine, like Google, Bing or Yahoo, the search engine goes out to the web to look for the results in real-time?
a)
True
b)
False
55.
To record information for later searching, search engines are constantly scanning the web with a program called a spider which follows links on pages until it eventually has visited every page on the internet.
a)
True
b)
False
56.
The function, rgb(reg, green, blue), allows you to set the value of various color properties to any color value by manipulating the levels of individual red, green, and blue values.
a)
True
b)
False
57.
Website
a)
A collection of interlinked web pages on the World Wide Web
b)
The raw text, images, and other elements included in a web page
c)
Hypertext Markup Language, a language used to create web pages
d)
A piece of a website, marked by a start tag and often closed with an end tag
58.
Website Content
a)
A collection of interlinked web pages on the World Wide Web
b)
The raw text, images, and other elements included in a web page
c)
Hypertext Markup Language, a language used to create web pages
d)
A piece of a website, marked by a start tag and often closed with an end tag
59.
HTML
a)
A collection of interlinked web pages on the World Wide Web
b)
The raw text, images, and other elements included in a web page
c)
Hypertext Markup Language, a language used to create web pages
d)
A piece of a website, marked by a start tag and often closed with an end tag
60.
HTML Element
a)
A collection of interlinked web pages on the World Wide Web
b)
The raw text, images, and other elements included in a web page
c)
Hypertext Markup Language, a language used to create web pages
d)
A piece of a website, marked by a start tag and often closed with an end tag
61.
HTML Tag
a)
The special set of characters that indicates the start and end of an HTML element and that element's type
b)
The purpose of different pieces of content in a web page, used to help the computer determine how that content should be displayed
c)
Hypertext Markup Language, a language used to create web pages
d)
A piece of a website, marked by a start tag and often closed with an end tag
62.
HTML Structure
a)
The special set of characters that indicates the start and end of an HTML element and that element's type
b)
The purpose of different pieces of content in a web page, used to help the computer determine how that content should be displayed
c)
Hypertext Markup Language, a language used to create web pages
d)
A piece of a website, marked by a start tag and often closed with an end tag
63.
Purpose for google.com
a)
To look up information
b)
To buy things
c)
To watch movies
64.
Purpose for amazon.com
a)
To look up information
b)
To buy things
c)
To watch movies
65.
Purpose for netflix.com
a)
To look up information
b)
To buy things
c)
To watch movies
66.
<p></p>
a)
Paragraph
b)
Identifies version of HTML page is written in
c)
The container for all HTML elements except <!DOCTYPE>
d)
Contains all the content of the HTML document.
67.
<!DOCTYPE>
a)
Paragraph
b)
Tells the web browser what language to expect.
c)
The container for all HTML elements except <!DOCTYPE>
d)
Contains all the content of the HTML document.
68.
<HTML></HTML>
a)
Paragraph
b)
Identifies version of HTML page is written in
c)
The container for all HTML elements except <!DOCTYPE>
d)
Contains all the content of the HTML document.
69.
<body></body>
a)
Paragraph
b)
Identifies version of HTML page is written in
c)
The container for all HTML elements except <!DOCTYPE>
d)
Contains all the content of the HTML document.
70.
<head></head>
a)
Paragraph
b)
Identifies version of HTML page is written in
c)
The container for all HTML elements except <!DOCTYPE>
d)
Contains information about title, style, scripts, meta information etc.
71.
HTML stands for...
a)
Hyper Text Markup Language
b)
High Text Mark Language
c)
Hyperlink and Text Markup Language
d)
Home Tool Markup Language
72.
Which character is used to indicate an end tag?
a)
^
b)
*
c)
/
d)
<
Reset
