Well done!

You have completed Exception Flow!

Quiz Question 1 of 2

Trace the print output of the following code:

print("A")
try:
    result = "test" + 5
    print("B")
except ValueError:
    print("C")
except TypeError:
    print("D")
else:
    print("E")
print("F")

Choose the correct answer below:

Skip Quiz Review Video