qobjects = [
{
question: "Consider the following code:import numpy as np
arr = np.array([True, False, True])
print(np.sort(arr))
What will be the printed result?",
options: [
"[False True True]",
"[True True False]",
"[True False True]"
],
correct: 0
},
{
fillintheblanks: "exercise_array_sort1.htm"
},
{
question: "True or False. If you use the sort() method on a 2-D array, both arrays will be sorted.",
options: [
"True",
"False"
],
correct: 0
}
]