Computer
Language
Statement &
Expression
Data
Types
Coding
Language
Expression
Evaluation
100

Programming language more abstract from the hardware; often human-readable.

What is HIGH-LEVEL LANGUAGE?

100

Instructions that Python can interpret & execute.

What is STATEMENT?

100

Include numbers, letters, and symbols; enclosed by either double or single quotes.

What is STRING?

100

Code is compiled and assembled into machine language; usually machine specific.

What is COMPILED?

100

The following code example would print the data type of x, what data type would that be?

x = 5
print(type(x))

What is "int"?

200

Instructions to which a computer responds directly (e.g., binary or hexadecimal) 

What is MACHINE LANGUAGE?

200

Combination of values, variables, operators, and function calls.

What is EXPRESSION?

200

Includes plain integers, long integers, floating point numbers, and complex numbers.

What is NUMERIC?

200

Code is interpreted then executed by the machine on which the code is run; ususally machine-agnostic.

What is INTERPRETED?

200

The following code example would print the data type of x, what data type would that be?

x = "Hello World"
print(type(x))

What is "str"?

300

The meaning of a language (as opposed to the form).

What is SEMANTICS?

300

Special characters representing computations.

What is OPERATOR?

300

Special subset of integer returning either True or False.

What is BOOLEAN?

300

Level of encapsulation; has identity and value.

What is OBJECT?

300

The following code example would print the data type of x, what data type would that be?

x = ["apple", "banana", "cherry"]
print(type(x))

What is "list"?

400

The form of a language (as opposed to the meaning).

What is SYNTAX?

400

Value upon which operators work.

What is a OPERAND?

400

Includes the objects list, tuple, and range.

What is SEQUENCE?

400

Feature of OOP; the ability of an entity to represent different data types in different scenarios.

What is POLYMORPHISM?

400

The following code example would print the data type of x, what data type would that be?

x = ("apple", "banana", "cherry")
print(type(x))

What is "tuple"?

500

In Python, the meaning of an object can change over time.

What is DYNAMIC SEMANTIC?

500

Defines the order in which expressions are evaluated.

What is RULES OF PRECEDENCE?

"Order of Operations" and "PEMDAS" are also acceptable

500

Uses the command "dict()" to create data frame objects.

What is MAPPING?

500

Feature of OOP; functionality of the parent class is passed to the child class.

What is INHERITANCE?

500

The following code example would print the data type of x, what data type would that be?

x = 20.5
print(type(x))

What is "float"?

M
e
n
u