Python | Functions | Question 4 Read Discuss Courses Practice Improve Article Improve Save Article Save Like Article Like What is the output of the following program : y = 8 z = lambda x : x * y print (z(6)) (A) 48 (B) 14 (C) 64 (D) None of the above Answer: (A) Explanation: lambdas are concise functions and thus, result = 6 * 8Quiz of this Question Last Updated : 18 Jan, 2021 Like Article Save Article Please Login to comment...