Report Bug
Qus :

What will be the output of the following ?

import numpy as np
a = np.array([1, 5, 4, 7, 8])
a = a + 1
print(a[1])

Qus

निम्नलिखित का आउटपुट क्या होगा?

import numpy as np
a = np.array([1, 5, 4, 7, 8])
a = a + 1
print(a[1])


A. 4
B. 5
C. 6
D. 7


Solution
C. 6






Report Bug