qobjects = [ { question: "Consider the following code:
print(max(5, 10, 25))
What will be the printed result?", options: [ "5", "10", "25" ], correct: 2 }, { question: "Consider the following code:
print(pow(2, 3))
What will be the printed result?", options: [ "2", "4", "6", "8" ], correct: 3 }, { question: "When using the built-in math module, what will be the printed result of the following code:
import math
print(math.sqrt(9))
", options: [ "3", "9", "81" ], correct: 0 }, { question: "When using the built-in math module, how can you return the number of PI?", options: [ "math.pi", "math.fpi", "math.strpi" ], correct: 0 } ]