Python Quiz


Here is an example of a quiz made in Reflex.

Once submitted the results will be shown in the results page.

Question #1

In Python 3, the maximum value for an integer is 263 - 1


Question #2

What is the output of the following addition (+) operator?

a = [10, 20]
b = a
b += [30, 40]
print(a)

Question #3

Which of the following are valid ways to specify the string literal foo'bar in Python: