qobjects = [
{
question: "Consider the following code:import numpy as np
arr = np.array([[1, 2, 3], [4, 5, 6]])
print(arr.shape)
What will be the printed result?",
options: [
"(3, 2)",
"(2, 3)",
"(2, 2)",
"(3, 3)"
],
correct: 1
},
{
fillintheblanks: "exercise_array_shape1.htm"
},
{
question: "The return value of the arr.shape is represented in a certain data type. Which one?",
options: [
"list",
"tuple",
"set",
"dictionary"
],
correct: 1
}
]