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 when converted to a boolean.