(What will be the output of the following NumPy code?)
निम्न NumPy कोड का आउटपुट क्या होगा?
x = np.arange(1, 11, 2)
print(x)
A
[1 2 3 4 5]
B
[1 3 5 7 9]
C
[2 4 6 8 10]
D
[1 3 5 7 9 11]
Explanation
Correct Answer: B) [1 3 5 7 9]