Vocabulary
Data Types
Key Words
Symbols
100

A person or device that makes calculations, stores data, and executes instructions according to a program

What is a computer?

100

data type that represents whole numbers without any fractional or decimal parts

What is an int?

100

This key word starts a conditional statement.

What is if?

100

+

What is addition?

200

a symbol that represents a specific action to be performed on one or more operands (values or variables)

What is an operator?

200

data type that is an immutable ordered sequence of Unicode characters used to store and represent textual data

What is a string?

200

This key word starts a loop with a known number of iterations.

What is for?

200

-

What is subtraction?

300

Legal rights that protect creations of the mind, including inventions, artistic works, designs, symbols, names, and images used in commerce

What is intellectual property?

300

data type that represents whole numbers without any fractional or decimal parts

What is a float?

300

This key word will run a block of code when no other condition is met in a conditional statement.

What is else?

300

*

What is multiplication?

400

a value or variable

that an operator acts upon

What is an operand?

400

data type that represents one of two possible truth values: True or False

What is a bool?

400

This key word starts a function definition?

What is def?

400

**

What is exponentiation?

500

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?

500

a built-in, ordered, and mutable collection type that can store multiple items in a single variable

What is a list?

500

This key word runs a loop until the condition is False.

What is while?

500

%

What is modulus/remainder?