What will be the output of the following ?
import numpy as npa=np.array([2,4,1])b=np.array([3,5])c=a+bprint(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,)