qobjects = [
{
question: "Consider the following code:import numpy as np
original_array = np.array([1, 2, 3])
x = original_array.copy()
x[0] = 5
print(original_array)
What will be the printed result?",
options: [
"[1 2 3]",
"[5 2 3]",
],
correct: 0
},
{
fillintheblanks: "exercise_copy_vs_view1.htm"
},
{
fillintheblanks: "exercise_copy_vs_view2.htm"
}
]