Vidyalelo
Python · Q19

Functions in Python

Programming · Python · question 19

Q19

What will be the output of the following Python code? min = (lambda x, y: x if x < y else y) min(101*99, 102*98)

A.
9997
B.
9999
C.
9996
Answer
D.
None of the mentioned

Answer: Option C

Solution

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