✪ Choose the correct option.
What is displayed when the following program is run?
def main():
try:
f()
print(“After the function call”)
except ZeroDivisionError:
print(“Divided by zero!”)
except:
print(“Exception”)
def f():
print(1 / 0)
main()