What will be the output of the following ?
import numpy as np a=np.array([2,4,1]) b=np.array([3,5]) c=a+b print(c)
निम्नलिखित का आउटपुट क्या होगा?
A. [2 4 1 3 5 ]
B. [5 9 1]
C. 15
D. ValueError
ValueError: operands could not be broadcast together with shapes (3,) (2,)