This is a block of organized, reusable code that is used to perform a single, related action
What is a function?
What is a variable?
Statements that check if a boolean is true or false
What is a conditional?
A block to store multiple pieces of information at once, also known as an array
What is a list?
This repeats a sequence of instructions until a specific condition is met
What is a loop?
This is the block used in reference to an event, like user input
What is an onEvent?
This is the amount of times you can create a global variable with the same name in a program
What is 1?
Examples of these are <, <=, !=, etc.
What are booleans?
These are typically the two types of data stored in lists
What are numbers or strings?
This happens when a condition in a while loop can never be met
What is an infinite loop?
This is the amount of times a single function can be called in a program
What is many or infinite?
count++ also means this
What is count + 1?
This is used in reference to a decision about whether or not to execute a certain piece of code
What is an if statement?
This block adds an item to the end of a list
What is append?
Once the condition becomes FALSE, a block of code does this
What is stop or exit the loop?
This is where functions are usually placed in your code
What is at the end?
whenVariablesUseCapitalizationLikeThis
What is camel case?
The additional lines of code on the ends of If/Else if statements
What is else?
This block of code deletes items from a list
What is remove?
The amount of times you need a boolean to be true to trigger at least 1 loop cycle
What is 1?
This is the common way to name a function that updates the screen of an app
What is updateScreen?
The reason why the variable cat1 does not mean the same as Cat1 or CAT1
What is same spelling or capitalization?
The Boolean operator that checks if two conditions are both true
What is &&?
This block of code places an item inside a list at a specific index
What is insert?
The type of loop that uses a set number of iterations
What is a for loop?