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 function (in order)

What is start, stop, and step?

200

This operator finds the quotient

What is // operator?

200
When function's name appears in the main code

What is an function call /function execution?

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

The key word, usually used within a function body, that allows you to modify a variable defined outside of this function

What global?

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 conditional statements?

400

These two operators are executed Right-to-Left

What is ** and =?

400

_______ 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 loop and proceed to next line after it

What is break?

400

This operator finds the remainder

What is % operator?

500

Name 3 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

User input is always of ________ data type


String

500

Name 3 properties of lists

They are objects, they are mutable, they can contain different data types ?   

500

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

What is a list?