Number Concepts
Consumer Math
Numeration and Computation
Measurements
Geometry
100

What is the smallest prime number?

What is 2?

100

Sarah bought a pair of jeans for $25, a T-shirt for $12, and backpack for $18. How much did she spend in total?

What is $55?

100

Write the Roman numeral for 50.

What is "L"?

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

If you multiply any number by 0, what is the result?

What is 0?

200
This flow control statement loops through a set of statements if a test statement continues to evaluate to True.
What is a for or while loop?
200

What is the product of 7 multiplied by 9?

What is 63?

200
This commonly used Python data structure contains a collection of items referenced by a numeric index.
What is a list?
200
Identify the letter printed from these lines of code: words = "GIS Rules!" print words[4]
What is 'R'?
300

What is the next even number after 14?

What is 16?

300

 Emma received a $15 gift card to a bookstore. She bought two books for $5 each and a bookmark for $2. How much money is left on her gift card?

What is $3.00 ?

300

If you round 6.78 to the nearest whole number, what is the result?

What is 7?

300
In Python, this is the smallest element of a program that can be executed.
What is a statement?
300
Identify the letters printed from these lines of code: words = "GIS Rules!" print words[:-1]
What is 'GIS Rules'?
400

If you add the first three natural numbers (1, 2, and 3), what is the sum?

What is 6?

400

The Smith family's monthly electricity bill is $85. If they use 250 kWh of electricity in a month, what is the cost per kWh of electricity?

What is  $0.34 per kWh ?

400

Express 3/4 as a decimal.

What is 0.75?

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
This function returns a string with leading and trailing white spaces removed.
What is strip()?
500

What is the largest two-digit prime number?

What is 97?

500

A smartphone costs $250, and there is a 10% sales tax added to the price. What is the total cost of the smartphone, including tax?

What is $275 ?

500

What is the value of the digit 6 in the number 6,482?

What is 6,000?

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 (\)?