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]) C = A + B print(C)
