Vidyalelo
Python · Q146

Functions in Python

Programming · Python · question 146

Q146

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

A.
8
B.
4
C.
2
Answer
D.
42

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board