The data type that holds a whole number.
What is an Int?
The name of the memory location that we use for storing data.
What is a variable?
This conditional statement will run a block of code if the statement is true.
What is an If statement?
These are used to repeat blocks of code.
What is a loop?
This block of code has a name to it and can be used more than once by calling that name.
What is a function?
The data type that holds True or false.
What is a bool?
A type of variable that can be used anywhere in your code space.
What is a global variable?
This conditional statement will run a block of code if the statement is false.
What is an else statement?
This type of loop evaluates a condition before the block of code.
What is a While loop?
This statement handles many blocks of code at once and chooses one of them.
What is a switch statement?
The data type that holds a decimal.
What is a float?
A type of variable that can be used only in the code space it is in.
What is a local variable?
This logical operation uses "!"
What is the symbol for "Not"?
This type of loop evaluates a condition after the block of code.
What is a Do-While loop?
A named variable that we pass into a function.
What is a parameter?
The data type that holds a single character.
What is a char?
This operation uses 1 equals sign.
What is the symbol for assigning a variable?
This logical operation uses "||".
What is the symbol for "Or"?
This type of loop holds a counter and finishes once the counter is done.
A set of steps used to complete a specific task.
What is an algorithm?
The data type that holds multiple characters
What is a string?
This operation uses 2 equal signs.
What is the symbol for the equals operation?
This logical operation uses "&&"
What is the symbol for "And"?
A loop that is inside another loop
What is a nested loop?
This symbol goes at the end of every programming line.
What is a semicolon in programming?