Vidyalelo
Python · Q35

Functions in Python

Programming · Python · question 35

Q35

What will be the output of the following code:def my_function(a, b): return a / bresult = my_function(4, 2)print(result)

A.
2
Answer
B.
1
C.
0.5
D.
4

Answer: Option A

Solution

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