Vidyalelo
Python · Q106

Functions in Python

Programming · Python · question 106

Q106

What will be the output of the following Python code? y = 6 z = lambda x: x * y print z(8)

A.
48
Answer
B.
14
C.
64
D.
None of the mentioned

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board