This is the language computers speak
What is code?
This category-defining word refers to a set of instructions. Pay attention to the order!
What is a sequence?
This is a term that refers to an exception to a rule
What is a condition?
This describes things that repeat
What is a pattern?
This is a block of code that can be called to run the code it contains.
What is a function?
This three letter word is a another way of saying mistake or error. It may also be found in nature.
What is a bug?
This is where you put your directional arrows.
What is a Command Line?
This is a type of statement starting with if and ending with then.
What is a conditional statement?
A three-letter acronym we use when programming. It helps us save time, make fewer mistakes, and save space.
What is D.R.Y.
These are the two steps for using functions.
What is defining and calling a function?
This person is in charge of writing code. It's also what all of you are.
What is a programmer?
It's good practice to do this before running your code. It can help you find bugs and figure out your next instruction.
What is testing?
This term refers to something that lets us break a rule.
What is an exception?
How many times can a loop iterate?
Unlimited
These curly symbols signal the beginning and end of a function
What are brackets?
This is an instruction given by a person (programmer) that tells a computer to do something.
What is a command?
This a term to refer to a set of steps that are made to solve a problem or complete a task.
What is an algorithm?
When the fuzz needs to turn, it has to follow this special rule. We can use a colored block to break it.
What is hit a wall?
We use this term to talk about a step in a loop.
What is an iteration?
This word, starting with re- is what separates functions from loops. We use this word when we want to use something again.
What is Re-use?