How can you calculate the element-wise square root of a NumPy array arr?
np.sqrt(arr)
arr.sqrt()
np.square_root(arr)
arr.square_root()
This question is part of this quiz :