Q1Single correct3 Marks31 Aug 2025
Given the following code snippet, what will be the output?
```
if None:
print("None is True")
elif 0:
print("0 is True")
elif "":
print("Empty string is True")
else:
print("All False")
```
Programming in Python · Week 2