qobjects = [ { question: "What does LCM stand for?", options: [ "Lowest Common Multiple", "Largest Circle Meter", "Largest Cycle Media" ], correct: 0 }, { question: "Consider the following code:
import numpy as np
num1 = 4
num2 = 6
x = np.lcm(num1, num2)

What will be the result of x?", options: [ "3", "2", "12" ], correct: 2 }, { question: "What is a correct method to use when finding the Lowest Common Multiple of all values in an array?", options: [ "np.lcm.radius()", "np.lcm.reduce()", "np.lcm.rad()" ], correct: 1 } ]