A
B
C
D
E
100

What is a decimal value in Python?

float

100

The number 2 based system - the language of the computer

binary

100

What is % in python?

modulus

100

Program parts

Input, process, output

100

In the following equation, which is an operand
print(23 + 44)

23 and 44

200

A place holder for a value, stores it, and we can change it to something else that we work with in python

Variable

200

A string in Python can be

numbers, letters, symbols

200

A reserved word that is used by the compiler to parse a program; you cannot use these as variable names such as print, if, else....

Keyword

200

What symbol is used for single line comments in Python

#

200

A sequence of instructions

algorithms

300

In the following program, what is the operator/

print(7 * 21)

*

300

Having two possible values called "true" and "false.

Booleans

300

What will the following print?
 x = 20 % 3
print(x)

2

300

What is the operator for showing that something is equivalent, such as 4 is equal to 2 + 2

= =

300

Notes added to the program that doesn't execute or show when program's run.

Comments

400

What indicates that Python is ready to receive data?

>>>

The Python prompt

400

What does the following arithmetic operation return
(3*5)  *  2**2  / 3

20

400

Code that prints a prompt asking for text from the user

input statement

400

What is the correct order of operations?

parenthesis, exponents, multiplication and division, addition and subtraction

400

indicates the type of data that can be stored as a variable value.

data type

500

not equal to

!=

500

Adding two Strings together using the '+' operator.

Concatenation

500

when we process our code

execute or run
500

the results that take place after our program has run, for example, could be a printout on the screen

output

500

the variable name along with the value that has been assigned to it.

assignment statement

M
e
n
u