What will be the output of the following Python code? print(min(max(False, -2,…
2026
What will be the output of the following Python code?
print(min(max(False, -2, -5), 2, 5))
Answer: C. False
- A.
-2
- B.
2
- C.
False
- D.
-5
Attempted by 384 students.
Show answer & explanation
Correct answer: C
Loading lesson…