wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Code.org: Web Development: Unit 2 Lessons 1 - 5 Test

Total questions: 25

Worksheet time: 2hrs 5mins

Name
Class
Date
1.

A collection of interlinked web pages on the World Wide Web

a)

Heading

b)

Website

c)

Digital Footprint

d)

HTML

2.

Hypertext Markup Language, a language used to create web pages

a)

Website Content

b)

Website Structure

c)

Heading

d)

HTML

3.

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

a)

HTML Element

b)

Digital Footprint

c)

Website Content

d)

Website Structure

4.

The collection of information about an individual across multiple websites on the internet

a)

HTML Element

b)

Website Content

c)

Digital Footprint

d)

HTML Tag

5.

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

a)

HTML

b)

Website Structure

c)

Website

d)

Heading

6.

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

a)

HTML Element

b)

Website Content

c)

HTML Tag

d)

Heading

7.

The raw text, images, and other elements included in a web page

a)

Digital Footprint

b)

Website Content

c)

Website

d)

Website Structure

8.

The purpose of different pieces of content in a web page, used to help the computer determine how that content should be displayed

a)

HTML Tag

b)

Website Structure

c)

Website

d)

Heading

9.

Pair Programming

a)

Two people write code and two people review code. Each person has the same role

b)

One person writes code, while the other reviews each line of code as it is typed in

c)

One person writes and review code

d)

Two people communicate about code

10.

What is the driver role during pair programming

a)

The driver draws code

b)

The driver looks at code

c)

The driver reviews code

d)

The driver writes code

11.

What is the navigator's role in pair programming

a)

The navigator writes code

b)

The navigator draws code

c)

The navigator researches code

d)

The navigator reviews each line of code as it is typed in

12.

Which code defines a paragraph

a)

<!DOCTYPE html>

b)

<html>

c)

<p>

d)

<head>

13.

Which code tells the computer that this is a document written in HTML

a)

<!DOCTYPE html>

b)

<html>

c)

<head>

d)

<p>

14.

Which code defines that it contains all the main content of your web page

a)

<!DOCTYPE html>

b)

<html>

c)

<head>

d)

<body>

15.

Which code defines that it contains information (sometimes called "metadata") about your web page

a)

<html>

b)

<head>

c)

<body>

d)

<p>

16.

Indicates the beginning of your code written in HTML.

a)

<head>

b)

<html>

c)

<p>

d)

<body>

17.

Line Break Tag

a)

<br>

b)

<p>

c)

<body>

d)

<html>

18.

Ordered List Tag

a)

<ul>

b)

<li>

c)

<ol>

d)

<br>

19.

Unordered List Tag

a)

<ol>

b)

<ul>

c)

<br>

d)

<li>

20.

List Tag

a)

<ul>

b)

<li>

c)

<ol>

d)

<br>

21.

This allows web developers to group a set of related items.

a)

Heading

b)

List

c)

HTML

d)

HTML Tag

22.

Horizontal Rule Tag

a)

<p>

b)

<br>

c)

<h1>

d)

<hr>

23.

Which tag is a comment tag?

a)

<!-- This is the title section -->

b)

<p>

c)

<-- This is the title section --!>

d)

<br>

24.

Which tag is a parent element?

a)

<h1>

b)

<p>

c)

<ul>

d)

<hr>

25.

Which tag is a child element?

a)

<ul>

b)

<li>

c)

<h2>

d)

<p>