Basic Math
Variables
Flow Control
General Python
String Operations
100

This character denotes the division operator.

What is the forward slash (/) ?

100
This common variable type stores letters, numbers, and symbols.
What is a string?
100

This often used statement checks the validity of a statement before creating a branch.

What is an 'if' statement?

100
To comment a line in Python, you use this/these character(s).
What is a pound sign (#) ?
100
This operator "glues" two strings together.
What is the concatenation (+) operator?
200

These characters have the highest order of operation in Python.

What are parenthesis?

200
This variable type stores decimal numbers.
What is a float?
200

The program is syntactically correct and runs without crashing, but it produces the wrong result. What type of error is this?

What is a semantic error?

200


What is False?

200

List all boolean operations.

What is 'not', 'and', 'not', and '^'?

300

The result of 9 // 5

What is 1?

300

This function allows user input text to be assigned to a variable.

What is input()?

300

This process focuses on implementing a large, complex software problem in small increments.

What is incremental development?

300

What is the output?


What is 40?

300

A related block of statements that are executed when this is used/executed

What is a function?

400
To raise the number 5 to the power of 8, you must use the power operator. This/These symbol(s) denote the power operator.
What are two asterisks (**) ?
400
Data stored as a string is surrounded by these.
What are quotes?
400

The process that many professional developers write code in. Hint: The implementation of this process in your assignments is required.

What is Test Driven Development?

400
Python will warn on a logic error, but it will warn (and possibly error) on this type of error.
What is a syntax error?
400

Name all relational operators

What is ==, !=, <, <=, > and >=?

500
Denoted as '%', this operator returns the remainder of a division operation.
What is the modulus?
500

The process of converting a variable from one type to a different type.

What is casting?

500

What will be the result of the following operations?


What is True?

500
This built-in Python function returns the length of many objects, including Lists.
What is len()?
500
This string operator declares that the following character should be literally interpreted.
What is the escape character (\)?
M
e
n
u