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 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 the block used in reference to an event, like user input

What is an onEvent?

200

This is the amount of times you can create a global variable with the same name in a program

What is 1?

200

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

What are booleans?

200

These are typically the two types of data stored in lists

What are numbers or strings?

200

This happens when a condition in a while loop can never be met

What is an infinite loop?

300

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

What is many or infinite?

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 the end of a list

What is append?

300

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

What is stop or exit the loop?

400

This is where functions are usually placed in your code

What is at the end?

400

whenVariablesUseCapitalizationLikeThis

What is camel case?

400

The additional lines of code on the ends of If/Else if 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 a function that updates the screen of an app

What is updateScreen?

500

The reason why the variable cat1 does not mean the same as Cat1 or CAT1

What is same spelling or capitalization?

500

The Boolean operator that checks if two conditions are both true

What is &&?

500

This block of code places an item inside a list at a specific index

What is insert?

500

The type of loop that uses a set number of iterations

What is a for loop?

M
e
n
u