Vidyalelo
Python · Q71

Functions in Python

Programming · Python · question 71

Q71

What is the output of the following code:square = lambda x: x**2result = square(5)print(result)

A.
25
Answer
B.
5
C.
10
D.
15

Answer: Option A

Solution

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