NumPy - Array Operations
What will be the output of this code?
import numpy as np arr = np.array([2, 4, 6]) result = arr * np.array([3, 2, 1]) print(result)
