adplus-dvertising
frame-decoration

Question

What is the output of this program?
min = (lambda x, y: x if x < y else y)
min(101*99, 102*98)

a.

9997

b.

9999

c.

9996

d.

None of the mentioned

Answer: (c).9996

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of this program?

Similar Questions

Discover Related MCQs

Q. Lambda contains block of statements.

Q. Lambda is a statement.

Q. Which of the following is a features of DocString?

Q. Which of the following functions does not throw an error?

Q. Which of the following functions will not result in an error when no arguments are passed to it?

Q. Which of the following functions does not necessarily accept only iterables as arguments?

Q. The function complex(‘2-3j’) is valid but the function complex(‘2 – 3j’) is invalid. State whether this statement is true or false.

Q. If b is a dictionary, what does any(b) do?

Q. If a function doesn’t have a return statement, which of the following does the function return?

Q. What is a variable defined inside a function referred to as?

Q. What is a variable defined outside a function referred to as?

Q. Does Lambda contains return statements?

Q. Python supports the creation of anonymous functions at runtime, using a construct called __________

Q. Which of the following refers to mathematical function?

Q. Which of the following is the use of id() function in python?

Q. What is called when a function is defined inside a class?

Q. Where is function defined?

Q. What are the two main types of functions?

Q. Which are the advantages of functions in python?

Q. Which keyword is use for function?