Digital Citizenship
Unit 1:
Problem Solving
Unit 1:
Computing
Unit 2:
Web Development
Unit 3: Interactive
Animations & Games
100

The responsible use of technology

Digital Citizenship

100

Name the four steps of the problem solving process IN CORRECT ORDER!

Define, Prepare, Try Reflect

100

Name the four parts of the IOSP model IN CORRECT ORDER!

Input, Output, Storage, Processing

100

Which of these parts of the website are most appropriate for CSS? Website Content, Website Structure, Website style

Style

100

Which shape block would I use to draw a circle? 

ellipse
200

The trail of data that is left behind when you use the internet

Digital Footprint

200

A scholar is researching recipes to make a pizza. Which step of the problem solving process is this an example of?

Prepare

200

This is called the "thinking work" of the computer

Processing

200

Which of these parts of the website are most appropriate for HTML? Website Content, Website Structure, Website style

Content AND Structure

200

This is additional information provided as input to a block to customize its functionality

Parameter

300

To intimidate, harm, bully, or upset someone online.

Cyberbullying

300

A scholar asks their family to eat the pizza and give feedback on how to improve the recipe. Which step of the problem solving process is this an example of?

Reflect

300

This is the information computers give to users, devices, or other computers

Output

300

Describe what this line of the code means: 

h1 { text-align: center; }

The heading "H1" will be centered on the web page. 

300

What is a variable?

A label for a piece of information used in a program.

400

Ms. Renaud watches 8 hours of Netflix every day. Is this a positive or negative digital habit? What can Ms. Renaud do to make this digital habit more healthy?

It is a negative habit. Ms. Renaud could take breaks or replace Netflix with off-screen activities. 

400

A scholar follows the recipe to make the pizza. Which step of the problem solving process is this an example of?

Try

400

Name TWO of the four types of processing.

If/Then, Comparing, Finding a Match, Counting

400

Describe what this line of the code means: 

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

It is a hyperlink to the home page of the website.

400

Where will this rectangle appear on the grid? 

rect (200, 350)

In the center towards the bottom of the grid

500

Ms. Renaud tracks her zumba class workout progress by using a fitness app. Is this a positive or negative digital habit? What can Ms. Renaud do to make this digital habit more healthy?

This is a positive habit. Ms. Renaud could improve by setting goals for herself and tracking those goals. 

500

A scholar decides the want to make a pizza, but they don't have a recipe. Which step of the problem solving process is this an example of?

Define

500

A mobile game tracks the number of times a player is hit by an obstacle. If the player hits 10 obstacles, then the game will display "Game Over" on the screen. What type(s) of processing are happening in this example? 

Counting and If/Then

500

Debug the following HTML: 

<p class:"Special">This webpage is amazing!</P>

class should have "=" instead of ":" AND the end tag should be a small "p" instead of a capital "P"

500

What will happen to this shape every time the programmer runs the code? 

ellipse (200, randomNumber (0,200), 100, randomNumber (100,300)) 

The ellipse will change y-position but stay near the top half of the screen. The ellipse will change its height anywhere between 100 and 300 pixels.