Programming (Year 12)
Errors and Debugging
Which of the following operations would raise an exception in Python?
print(1/0)
print(2+2)
print('Hello')
print(5*5)
Next