What will be the output of the following ?
import numpy as np
a=np.array([2,4])
b=np.array([3,5])
c=a*b
print(c)
Qus
निम्नलिखित का आउटपुट क्या होगा?
import numpy as np a=np.array([2,4]) b=np.array([3,5]) c=a*b print(c)
A. [ 2 4 3 5]
B. [ 6 20]
C. [ 6 12 10 20]
D. 26