Examveda

What is the output of the following code:
def my_function(a, b):
  return a * b
result = my_function(4, 0)
print(result)

A. 0

B. 4

C. 16

D. 1

Answer: Option A


This Question Belongs to Python Program >> Functions In Python

Join The Discussion

Related Questions on Functions in Python