NumPy - Array Operations
You have two arrays:
Which code correctly computes the element-wise product and then applies the square root to each product?
a = np.array([1, 2, 3]) b = np.array([4, 5, 6])
Which code correctly computes the element-wise product and then applies the square root to each product?
