Examveda

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

A. 8

B. 4

C. 2

D. 42

Answer: Option C


This Question Belongs to Python Program >> Functions In Python

Join The Discussion

Related Questions on Functions in Python