NumPy - Broadcasting
What is the output of the following code?
import numpy as np a = np.array([[1, 2, 3], [4, 5, 6]]) b = np.array([10, 20, 30]) result = a + b print(result)
