wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Code.org CS Discoveries Unit 2 Web Development

Total questions: 23

Worksheet time: 12mins

Name
Class
Date
1.

A piece of a website, marked by a start tag and often closed with an end tag.

a)

HTML tag

b)

HTML element

c)

Website content

d)

Website structure

2.

The purpose of different pieces of content in a webpage; used to help the computer determine how that content should be displayed

a)

HTML tag

b)

HTML element

c)

Website content

d)

Website structure

3.

HTML tag that defines the document's body

a)

<document></document>

b)

<doc></doc>

c)

<body></body>

d)

<b></b>

4.

HTML tag that defines the paragraph

a)

<paragraph></paragraph>

b)

<par></par>

c)

<p></p>

d)

<para></para>

5.

A title or summary for a document or section of a document.

a)

Heading

b)

HTML tag

c)

HTML element

d)

HTML

6.

HTML tag that defines the HTML document.

a)

<html></html>

b)

<doc></doc>

c)

<type></type>

d)

<htmldoc></htmldoc>

7.

HTML tag that defines information about the document.

a)

<info></info>

b)

<head></head>

c)

<html></html>

d)

<data></data>

8.

What is HTML?

a)

Holographic Markup Language, a language used to define holographic images

b)

Hyperspace Mileage Language, a language used to define time travel

c)

Hypertext Markup Language, a language used to create web pages

d)

Honeynut Marshmallow Loops, a delicious cereal for kids.

9.

A special set of characters that indicates the start and end of an HTML element and that element's type.

a)

HTML tag

b)

HTML element

c)

Website structure

d)

Website content

10.

The raw text, images, and other elements included in a webpage.

a)

Website structure

b)

HTML tag

c)

HTML element

d)

Website content

11.

HTML tag that defines the document type. Goes before the <html> start tag.

a)

<!DOCTYPE>

b)

<!TYPE>

c)

<!DOCUMENT-TYPE>

d)

<!DOC>

12.
a)
b)
c)
d)
13.
a)
b)
c)
d)
14.

What does the "src" in the image tag stand for?

a)

source

b)

screen

c)

Nothing--it's just HTML code

d)

sorta code

15.

What is Creative Commons?

a)

A collection of public copyright licenses that restrict anyone from distributing copyrighted work

b)

A collection of public copyright licenses that says that a work belongs to no one

c)

A collection of public copyright licenses that says it's okay to plagiarize

d)

A collection of public copyright licenses that enable the free distribution of an otherwise copyrighted work

16.

What is the correct way to add an image to your website?

a)

<img src="bird.jpg">

b)

<img src="bird.jpg">bird</img>

c)

<img>bird.jpg</img>

d)

<img scr="bird.jpg">

17.

What is the correct way to create a hyperlink?

a)

<a ref=home>index.html</a>

b)

<a href="index.html">Home</a>

c)

<a href "index.html">Home</a>

d)

<a href>Home</a>

18.

Which tag correctly defines a list item in an ordered or unordered list?

a)

<ol></ol>

b)

<li></li>

c)

<list></list>

d)

<ul></ul>

19.

When added to your HTML file, which of the following will NOT HELP make your code easier to read and understand?

a)

comments

b)

indentation

c)

bugs

d)

whitespace

20.

What does the "alt" tag do when added to the <img> tag?

a)

Adds an alternative location where the image file can be found

b)

Adds text under the image

c)

Adds text that describes the image if the image cannot load

d)

Adds an alternative image to show if the user doesn't like the first one

21.

Which heading tag produces the largest text?

a)

<h1></h1>

b)

<h6></h6>

c)

<h4></h4>

d)

<h10></h10>

22.

What tag tells the computer that this is a document written in HTML?

a)

<!DOCTYPE html>

b)

<!-- -->

c)

<html>

d)

<doctype=html>

23.

Which heading tag produces the smallest text?

a)

<h1></h1>

b)

<h6></h6>

c)

<h4></h4>

d)

<h10></h10>