A person or device that makes calculations, stores data, and executes instructions according to a program
What is a computer?
data type that represents whole numbers without any fractional or decimal parts
What is an int?
This key word starts a conditional statement.
What is if?
+
What is addition?
a symbol that represents a specific action to be performed on one or more operands (values or variables)
What is an operator?
data type that is an immutable ordered sequence of Unicode characters used to store and represent textual data
What is a string?
This key word starts a loop with a known number of iterations.
What is for?
-
What is subtraction?
Legal rights that protect creations of the mind, including inventions, artistic works, designs, symbols, names, and images used in commerce
What is intellectual property?
data type that represents whole numbers without any fractional or decimal parts
What is a float?
This key word will run a block of code when no other condition is met in a conditional statement.
What is else?
*
What is multiplication?
a value or variable
that an operator acts upon
What is an operand?
data type that represents one of two possible truth values: True or False
What is a bool?
This key word starts a function definition?
What is def?
**
What is exponentiation?
a named variable listed in a function's definition that acts as a placeholder for data the function needs to do its job
What is a parameter?
a built-in, ordered, and mutable collection type that can store multiple items in a single variable
What is a list?
This key word runs a loop until the condition is False.
What is while?
%
What is modulus/remainder?