Value does not change
What is a constant?
Used to add variables' values together
What is a math block?
Type of variable that holds a list of multiple items
What is an array?
Three terms that make up a conditional format?
What is if, then , else?
Part of a program that does not work correctly.
What is a bug?
Value can change
What is a variable
Create a pseudocode:

What is
At the start of the program, the variables for Player A wins, Player B wins, and player ties are all set to zero.
Pseudocode:

What is
When you shake the micro:bit, the lights will display “Total rounds played:” and the number value that totals the number of wins for player A plus the number of wins for Player B plus the number of ties
Tells a computer when to do it
What is a conditional?
Finding and fixing problems in your algorithm or program.
What is debugging?
Only two values: True or False (can also be represented by 0=False, 1=True)
What is Boolean?
A variable that represents a single dot on the screen and holds two separate values
What is a sprite?
True or False: You can only use the default variable names provided in the Variables toolbox drawer.
What is false?
Example of an if then conditional?
What is If ______, then ______
A note in the source code of a computer program that helps explain the code to people who read it.
What is a comment?
A string of alphanumeric characters, e.g., a person’s name, a password, or the day of the week
What is a string?
A detailed outline or rough draft of a program
What is a pseudocode?
Very specific, step-by-step procedures for solving certain types of problems
What is an algorithm?
Example of if then else conditional
What is If ______, then ______, else _______
The first public packet-switched computer network
What is ARPANET?
Numerical data, e.g., the year, the temperature, or the degree of acceleration
What is numeric?
The five types of variables
What are numbers, string, sprite, boolean, array?
Looking for similarities or instructions that repeat
What is pattern recognition?
A diagram that uses shapes, lines and arrows to sequence steps.
What is a flowchart?
The four parts to computational thinking
What is decompositon, pattern recognition, abstration, algorithms