wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

8th grade End of Quarter Review

Total questions: 69

Worksheet time: 1hrs 18mins

Name
Class
Date
1.

Which of these is NOT one of the 3 main screens in App Inventor?

a)

Projects

b)

Connect

c)

Designer

d)

Blocks

2.

On the Palette, under which selection will you find a Button?

a)

User Interface

b)

Layout

c)

Media

d)

Sensors

3.

On the Palette, under which item will you find the Accelerometer?

a)

User Interface

b)

Layout

c)

Media

d)

Sensors

4.

In programming, this is an action that occurs as a result of the user or another source,

a)

occassion

b)

design

c)

block

d)

event

5.

What is the purpose of this backpack icon?

a)

store apps in it

b)

delete unwanted blocks

c)

export blocks to other apps

d)

to make the page look pretty to make the page look pretty

6.

An example of an event would be?

a)

Mouse being clicked to hit mole

b)

Pressing right left arrow keys

c)

Key pad pressed to watch video

d)

All of the above

7.

On the Blocks page, under which item will you find the "If-Then" blocks?

a)

Control

b)

Logic

c)

Math

d)

Text

8.

Professional computer scientists use pair programming.

a)

True

b)

False

9.

Select all that apply:What are the two roles in pair programming?

a)

Boss

b)

Driver

c)

Teachr

d)

Chef

e)

Navigator

10.

An app's user interface includes only its visible components.

a)

True

b)

False

11.

Select all that apply:Which of the following elements would be considered part of the user interface (UI) for an app?

a)

The color of the app's background screen

b)

A button that appears on the screen

c)

An error message that appears when something goes wrong

d)

The app's memory

12.

Select all that apply:Which of the following are components?

a)

Player.IsPlaying

b)

Button

c)

Player

d)

Label

13.

Select all that apply:What are the two main windows (or views) of App Inventor?

a)

Property Editor

b)

Coder

c)

Designer

d)

Blocks Editor

14.

Which of the following is the best name for a text box where the user types a password?

a)

Password

b)

TextBox

c)

TextBoxPassword

d)

TextBox1

15.

Select all that apply:Which of the following are examples of non-visible components?

a)

AccelerometerSensor

b)

Label

c)

Clock

d)

TextToSpeech

e)

Button

16.
This is an example of what kind of data?
a)
String Data
b)
Number Data
c)
Boolean Data
d)
Words Data
17.

Which is an example of a color block?

a)
b)
c)
d)
18.

Which is an example of a statement block?

a)
b)
c)
d)
19.

What is the location of this block?

a)

Procedure

b)

Math

c)

Control

d)

Text

20.

Select all that apply:

Which of the following would be considered an event on your smart phone?

a)

The phone's location changes.

b)

The app plays a sound clip.

c)

The user taps on the screen.

d)

The phone receives a text message.

21.

With App Inventor, all activity occurs in response to an even

a)

True

b)

False

22.
If you want to have more than one property for a CSS selector, what character separates them?
a)
comma (,)
b)
semi-colon (;)
c)
colon (:)
d)
dash (-)
23.
What does CSS stand for? 
a)
Creative Style Sheets
b)
Cascading Style Sheets
c)
Colorful Style Spread
d)
Computer Style Spread
24.
Where in the HTML document is the correct location to insert code to link to your external CSS? 
a)
In the <head> section
b)
In the <body> section
c)
At the very end of the document
d)
At the very beginning of the document
25.
Which is correct CSS syntax? 
a)
{ body; color=black;}
b)
body: color= black
c)
body {color:black;}
d)
(body color is black) 
26.
Select the code below that uses CSS to configure a background color of #000000 for a web page.
a)
body { background-color: #000000; }
b)
body { bgcolor: #000000; }
c)
document { background­-page: #000000; }
d)
None of these
27.
Which is the correct way to format a Font Family for a paragraph?
a)
p { font-face: Arial; }
b)
p { family-font: Arial; }
c)
p { font-family: Arial; }
d)
p { font: Arial; }
28.
What symbols go around the properties for each CSS selector?
a)
< >
b)
[ ]
c)
{ }
d)
( )
29.
Which is the correct way to format a Font Family for a paragraph? (Hint: make sure you have more than one backup font!)
a)
p { font-face: Arial, Verdana, San-Serif; }
b)
p { font-family: Arial, Verdana, San-Serif; }
c)
p { family-font: Arial, Verdana, San-Serif; }
d)
p { font: Arial, Verdana, San-Serif; }
30.
Which is the Value in the CSS?
p {color: red;}
a)
p
b)
color
c)
red
31.
Which is the property in this CSS?
p {color: red;}
a)
p
b)
color
c)
red
32.
A selector (ex: h1{ } ) can only have 1 property
a)
true
b)
false
33.
Which CSS code centers text?
a)
p {align: center;}
b)
p {align=center;}
c)
p {text-align: center;}
d)
p {center;}
34.
Which is the selector in this CSS?
p {color: red;}
a)
p
b)
color
c)
red
35.
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
36.
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
37.
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
38.
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
39.
Part of a program that does not work correctly.
a)
Bug
b)
Comment
c)
Debugging
d)
Indentation
40.
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
41.
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
42.
Finding and fixing problems in an algorithm or program.
a)
Bug
b)
Comment
c)
Debugging
d)
Indentation
43.
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
44.
<ol></ol>
a)
Bulleted List
b)
Numbered List
c)
List Item
45.
<ul></ul>
a)
Bulleted List
b)
Numbered List
c)
List Item
46.
<li></li>
a)
Bulleted List
b)
Numbered List
c)
List Item
47.
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
48.
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
49.
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
50.
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
51.
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
52.
The collected information about an individual across multiple websites on the internet is a digital footprint.
a)
True
b)
False
53.
The following tag will show a bulleted list
a)
<ul>
b)
<ol>
c)
<li>
d)
<list>
54.
Images in your webpage may have the following extensions except
a)
.png
b)
.gif
c)
.jpg
d)
.psd
55.
Which tag contains ALL of the website's visible content?
a)
head
b)
body
c)
title
d)
start
56.

What is this tag used for? <ol>

a)

list items

b)

unordered lists

c)

all lists

d)

ordered lists

57.
What is the correct syntax for items inside a list?
a)
<li>item</li>
b)
<ol>item</ol>
c)
li/>item
d)
<ul>item</ul>
58.
Which tag defines a numbered list?
a)
OL
b)
UL
c)
LI
d)
NL
59.

What is this tag used for?

<ol></ol>

a)

list items

b)

unordered lists

c)

all lists

d)

ordered lists

60.

What is this tag used for?

<ul></ul>

a)

list items

b)

unordered lists

c)

all lists

d)

ordered lists

61.

The src attribute of an image is _____.

a)

the url

b)

the <img> tag

c)

the <a> tag

62.
It is an HTML tag used to create hyperlinks. The tag identifies what is clicked on and where it links to.
a)
Anchor Tag (<a> </a>)
b)
Beginning Tag (<html>)
c)
Ending Tag (</p)
d)
Break Tag (</br>)
63.
Debugging is the process of repeatedly checking the webpage and site to make elements display as designed.
a)
TRUE
b)
FALSE
64.
Which tag is used to create a hyperlink?
a)
<a>
b)
<href>
c)
<b>
d)
<i>
65.

The following code has a bug, what is it?

<body>

<h3>Heading </h3>

<ol> <li> cat</li> dog

<li> rabbit</li> </ol>

</body>

a)

The ordered list should be indented.

b)

Dog is missing an opening tag.

c)

Dog is missing an opening and closing tag

d)

The listed items are not surrounded with quotation marks.

66.

Fill in the blank below with the appropriate tag.

<body>

<h3>Heading </h1>

<ol> <li> Thing 1</li> <li>Thing 2 ____ <li> Thing 3</li> _____

</body>

a)

<li>, <ol>

b)

</li>, </ol>

c)

<li>, </ol>

d)

</li>, <ol>

67.
Which of the following hyperlinks is correct?
a)
< a href ="https://www.yahoo.com"> Website</a>
b)
< a hraf ="https://www.yahoo.com"> Website</a>
c)
<a ="https://www.yahoo.com"> Website</a>
d)
< a href ="https://"> Website</a>
68.

A language used to create web pages.

a)

Code

b)

HTML

c)

Tag

d)

Element

69.

What property changes the border for an image/table?

a)

border:

b)

border-size:

c)

border-color: