1 Consider the following code. What is the output of divide(2,4)?...
1 Consider the following code. What is the output of divide(2,4)?
def divide(a, b):
z = -1
try:
z = a / b
except ZeroDivisionError:
print('Can not divide by zero')
finally:
print('Result is', z)
a Cannot divide by zero. Result is -1
b Result is 0.5
c Result is 2
d Cannot divide by zero. Result is 2