What is the output of the following code:
def my_function(a, b):
return a * b
result = my_function(4, 0)
print(result)
return a * b
result = my_function(4, 0)
print(result)
A. 0
B. 4
C. 16
D. 1
Answer: Option A

Join The Discussion