A command that has a block of code attached to it.
Function
Outputs information to the monitor.
What math operation does this represent: 5**2
exponents
Loops represent which type of control structure.
iteration
A number can be a string data type.
True
Linking a combination of strings and/or integers in the same print statement.
Concatenate
Allows the user to give the computer information.
input
What operation does this equation represent: 5 % 2
modular division
If Statements represent what type of control structure.
selection
A letter can be an integer data type.
False
A step by step set of instructions.
Algorithm
Will report the largest number in a range.
max
What is the answer to the equation (4 + 3 * 9)?
31
What stops a while loop from repeating?
A condition that is false.
String data types need to be inside quotation marks?
True
A name for information that is stored in the computer's memory.
variable
This allows you to create a custom function.
def
What is the answer to the equation 16 % 4?
0
What determines how many times the for loop with iterate?
The value of the range function.
Which data type accepts decimal values.
Float
Information sent to a function.
Parameter
Gives your python program access to different function libraries.
import
What symbol do we use to show that two values are NOT equal to each other?
!=
What happens when the condition in an if statement is false?
The code will not execute.
What data type has a value of either True or False
Bool