Q1Multiple correct3 Marks10 May 2026
What is the output?
```
def f(x):
try:
print("T")
return 10 // x
except ZeroDivisionError:
print("H")
return "Z"
finally:
print("Y")
return "F"
p = f(2)
q = f(0)
```
Select all options that are correct: