Functions
Variables
Conditionals
Lists
Loops
100

This is a block of organized, reusable code that is used to perform a single, related action

What is a function?

100
Names to which you store values 

What is a variable?

100

Statements that check a if a boolean is true or false

What is a conditional?
100

A block to store multiple pieces of information at once, also known as an array

What is a list?

100

This repeats a sequence of instructions until a specific condition is met

What is a loop?

200

this is used in reference to an event

What is when?

200

This is the amount of times variable with the same name can be used in a program

What is 1?

200

Examples of these are <, <=, !=, etc. 

What are booleans?

200

These are typically the types items in list

What are numbers or strings?

200

This happens when a condition can never be met

What is an infinite loop?

300
This is the amount a single function can be called in a program

What is many?

300

count++ also means this

What is count + 1?

300

This is used in reference to a decision about whether or not to execute a certain piece of code

What is an if statement?

300

This block adds an item to a list

What is append?

300

Once the condition becomes FALSE, a block of code does this

What is stop?

400

This is avoidance of putting functions inside other functions

What is embedding or stacking?

400

whenVariablesUseCapitalizationLikeThis

What is concatenation or camel case?

400

The additional lines of code on the ends of If Else statements 

What is else?

400

This block of code deletes items from a list

What is remove?

400

The amount of times you need a boolean to be true to trigger at least 1 loop cycle

What is 1?

500

This is the common way to name of a function that updates something

What is updateFunction?

500

Variables like cat1 do not mean Cat1 or CAT1

What is same spelling or capitalization?

500

When a conditional checks if two conditions are both true

What is &&?

500

This block of code places an item inside a list

What is insert?

500

The type of loop that uses a set number of iterations

What is a for loop?