NumPy - Indexing and Slicing
What is the output of the following code?
import numpy as np arr = np.array([10, 20, 30, 40]) result = np.where(arr > 25, arr, 0) print(result)
