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 a if a boolean is true or false
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 used in reference to an event
What is when?
This is the amount of times variable with the same name can be used in a program
What is 1?
Examples of these are <, <=, !=, etc.
What are booleans?
These are typically the types items in list
What are numbers or strings?
This happens when a condition can never be met
What is an infinite loop?
What is many?
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 a list
What is append?
Once the condition becomes FALSE, a block of code does this
What is stop?
This is avoidance of putting functions inside other functions
What is embedding or stacking?
whenVariablesUseCapitalizationLikeThis
What is concatenation or camel case?
The additional lines of code on the ends of If Else 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 of a function that updates something
What is updateFunction?
Variables like cat1 do not mean Cat1 or CAT1
What is same spelling or capitalization?
When a conditional checks if two conditions are both true
What is &&?
This block of code places an item inside a list
What is insert?
The type of loop that uses a set number of iterations
What is a for loop?