Q. What is the output of `bool(0)` in Python?
β
Correct Answer: (B)
False
Explanation: `0` is considered `False` in boolean context.
Explanation: `0` is considered `False` in boolean context.