Python 1
Python 2
Python 3
Python 4
Python 5
100

What do you call an expression that is either true or false?

What is Boolean?

100

"A 'chunk' of code that you can use over and over again."

What is a function?

100

A segment of a string is called

What is a slice?

100

Three logical operators

What is and, or and not?

100

Three arguments for range (in order)

What is start, stop, and step?

200

This function converts value to another data type  

What is a type conversion function?

200

The value that is sent to the function when it is 'called'

What is an argument?

200

The process of executing the body of the loop over and over again is called

What is an iteration?

200

The order statements are executed in a program 


What is the flow of execution?

200

The variable listed inside the parentheses in the function definition

What is a parameter?

300

Special handling of alpha order when comparing strings in Python  

What is all upper case letters come before lowercase letters?

300

How is accessing functions from an imported module different from using the built-in functions?

What is using the dot notation?

300

First line of a function

What is a header?

300

Two of the string properties

What is they are: a sequence of characters,  surrounded by single or double quotes, and immutability?

300

Code that eliminates the new line in a print statement

What is end=" "?

400

Term describing situation where more than two branches are needed in a flow chart 

What is a chained conditionals?

400

Defining a function creates a ______ with the same name'

What is a variable?

400

The variable that changes each time the loop executes and controls when the loop finishes

What is the iteration variable?

400

This keyword is used to end the current iteration in a for loop (or a while loop), and continues to the next iteration

What is continue?

400

Name for a method call

What is an invocation?

500

What are three of the four attributes of functions

What is They take arguments, some are built-in, some require importing, they have return values?

500

This statement is called an indefinite loop.

What is a while loop?

500

The pattern of processing a string is called


What is traversal?

500

The syntax for calling a method is different from that of a function in what way? 


What are methods are called by appending the method name to the variable name using the period as a delimiter(i.e. dot notation ) ?   

500

Data structure which lets you create a sequence of any data type.

What is a tuple?