Q. What will `print(bool(0))` return?
β
Correct Answer: (B)
False
Explanation: In Python, `0` is considered False, while any non-zero value is True.