What will be output for the following code?
import numpy as np
ary = np.array([1,2,3,5,8])
ary = ary + 1
print (ary[1])
Qus
निम्नलिखित कोड के लिए आउटपुट क्या होगा?
import numpy as np ary = np.array([1,2,3,5,8]) ary = ary + 1 print (ary[1])
A. 0
B. 1
C. 2
D. 3