qobjects = [ { question: "What does GCD stand for?", options: [ "Greatest Common Distribution", "Greatest Common Differences", "Greatest Common Divisor" ], correct: 2 }, { question: "Consider the following code:
import numpy as np
num1 = 6
num2 = 9
x = np.gcd(num1, num2)

What will be the result of x?", options: [ "3", "9", "18" ], correct: 0 }, { question: "What is a correct method to use when finding the Highest Common Factor of all values in an array?", options: [ "np.gcd.reduce()", "np.gcd.grand()", "np.gcd.expand()" ], correct: 0 } ]