What will be the output of the following Python function? min(max(False,-3,-4), 2,7)

Questions & AnswersCategory: Programming LanguageWhat will be the output of the following Python function? min(max(False,-3,-4), 2,7)
1 Answers
Geek Boy Staff answered 2 years ago

d. False
Explanation: The function max() is being used to find the maximum value from among -3, -4 and false. Since false amounts to the value zero, hence we are left with min(0, 2, 7) Hence the output is 0 (false).