NEW
Font size
WorksheetsCode.org: Web Development: Unit 2 Lessons 1 - 9
Total questions: 25
Worksheet time: 2hrs 5mins
Part of a program that does not work correctly
Whitespace
Bug
Debugging
Citation
A note in the source code of a computer program that helps explain the code to people who read it
Indentation
Hyperlink
Comment
Creative Commons
Finding and fixing problems in an algorithm or program
Intellectual Property
Bug
Comment
Debugging
The placement of text farther to right or left of the surrounding text, making it easier to understand the program's structure
Indentation
Bug
Intellectual Property
Hyperlink
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
Debugging
Comment
Whitespace
Copyright
A quotation from or reference to a book, paper, or author, especially in a scholarly work
Citation
Intellectual Property
Whitespace
Comment
The exclusive legal right to print, publish, perform, film, or record literary, artistic, or musical material, and to authorize others to do the same
Bug
Copyright
Indentation
Hyperlink
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
Citation
Hyperlink
Copyright
Creative Commons
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.
Intellectual Property
Debugging
Comment
Copyright
A link from a HTML file to another location or file, typically activated by clicking on a highlighted word or image on the screen
Copyright
Hyperlink
Whitespace
Citation
A collection of interlinked web pages on the World Wide Web
Heading
Website
Digital Footprint
HTML
Hypertext Markup Language, a language used to create web pages
Website Content
Website Structure
Heading
HTML
A piece of a website, marked by a start tag and often closed with an end tag
HTML Element
Digital Footprint
Website Content
Website Structure
The collection of information about an individual across multiple websites on the internet
HTML Element
Website Content
Digital Footprint
HTML Tag
A title or summary for a document or section of a document
HTML
Website Structure
Website
Heading
The special set of characters that indicates the start and end of an HTML element and that element's type
HTML Element
Website Content
HTML Tag
Heading
The raw text, images, and other elements included in a web page
Digital Footprint
Website Content
Website
Website Structure
The purpose of different pieces of content in a web page, used to help the computer determine how that content should be displayed
HTML Tag
Website Structure
Website
Heading
Pair Programming
Two people write code and two people review code. Each person has the same role
One person writes code, while the other reviews each line of code as it is typed in
One person writes and review code
Two people communicate about code
What is the driver role during pair programming
The driver draws code
The driver looks at code
The driver reviews code
The driver writes code
What is the navigator's role in pair programming
The navigator writes code
The navigator draws code
The navigator researches code
The navigator reviews each line of code as it is typed in
Which code defines a paragraph
<!DOCTYPE html>
<html>
<p>
<head>
Which code tells the computer that this is a document written in HTML
<!DOCTYPE html>
<html>
<head>
<p>
Which code defines that it contains all the main content of your web page
<!DOCTYPE html>
<html>
<head>
<body>
Which code defines that it contains information (sometimes called "metadata") about your web page
<html>
<head>
<body>
<p>
