निम्नलिखित का आउटपुट क्या है?
What is the output of the following ?
print(int()) A
Any random number
B
1
C
0
D
Error
Explanation
In Python, calling int() without any arguments returns the default value of 0.
So, print(int()) will output 0.
Answer: (C) 0
Correct Answer: C) 0