Q. What will be the output of the following code?
Code:
print(bool(0))
β
Correct Answer: (B)
False
Explanation: In Python, 0 is considered False in a boolean context.