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
AnswerD.
None of the mentioned
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board