When a group of people doen't have equal access to the internet because of where they live or how much money they have.
What is the Digital Divide
What is the answer to the Boolean Equation
((5>4) AND (3<2))?
What is FALSE
A way to store a group of similar variables, such as student names
What is a list
The type of control structure that can be used for making decisions in a program based on the value of a Boolean expression.
What is an if statement (or selection, or branching)
The Internet depends on a layered communication system of _______
What are protocols
A group of program statements with a name that you can use over and over again.
What is a function
This has a variable with a starting value, a condition, and a counter.
What is a loop
We want to collect information about butterfly migration, and we used the internet to gather information.
What is citizen science
What is the number 255 in binary?
What is 1111 1111
In code.org, we could ask a user to input their name or age. What do you use to store this information in your program?
What is a variable?
Sarah needs an image for her english project and finds one online that gives her permission to use it. What kind of license is this called?
What is creative commons?
var x = 5;
var x = 7 + 1;
What is wrong with this code?
What is we create a variable only once.
An attempt to get personal information by sending a fake email that looks like a legitimate business.
What is a Phishing
Assuming that forward tells a robot to move forward by 10 pixels and turn tells it to turn right by 90 degrees, this shape would be drawn by the following algorithm. forward forward turn forward turn forward forward turn forward turn
What is a rectangle?
The following code should display "even" if the positive number num is even.
IF (MISSING CONDITION)
DISPLAY ("EVEN")
Give a Boolean expression that could replace MISSING CONDITION
What is num MOD 2 == 0
When a network has more than one path from one computer to another, these paths are an example of?
What is redundancy?
Programming code you use to repeat an action. In one statement it has a way to initialize a counter, a conditional and a way to add one to counter.
What is a for loop or while loop
p <- 0
sum <- 0
REPEAT UNTIL p = 4
sum <- sum + p
p <- p + 1
DISPLAY (sum)
What is 6