निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
from numpy import random
x = random.randint(100)
print(x)
A)
B)
C)
D)
Explanation:
The function random.randint(100)
generates a random integer between 0 and 99. So, the output can be any number, like 56, 26, or 40.
Therefore, the correct answer is (D) All of the mentioned above.