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