qobjects = [
{
question: "What does 'ufuncs' stand for?",
options: [
"United Functions",
"Universal Functions",
"Unique Functions"
],
correct: 1
},
{
question: "NumPy has a ufunc that adds elements in one list to elements in another list, what is the name of this ufunc?",
options: [
"concat()",
"sum()",
"add()"
],
correct: 2
},
{
question: "Consider the following code:import numpy as np
x = [2, 2, 5, 5]
y = [1, 5, 5, 2]
z = np.add(x, y)
What will be the result of z?",
options: [
"[ 3 7 10 7]",
"[ 4 10 6 7]",
"[ 2 10 25 10]"
],
correct: 0
}
]