Q1
What is the output of bool(0) in Python?
easyCorrect Answer: False
Explanation:
In Python, several values are considered falsy by default, including 0, empty strings, empty lists, and None, meaning bool() converts them to False, while any nonzero number is considered truthy.