NumPy - Array Operations
What will be the dtype of the result after this operation?
import numpy as np arr1 = np.array([1+2j, 3+4j]) arr2 = np.array([1, 2]) result = arr1 * arr2 print(result.dtype)
