Vidyalelo
Python · Q180

Functions in Python

Programming · Python · question 180

Q180

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

A.
0
Answer
B.
4
C.
16
D.
1

Answer: Option A

Solution

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