Lambda Function in Python MCQs Exercise II

Ques 1 Lambda Function


What is the output of the following Python Code?


fun=lambda x:return x*x
print(fun(5))

A 5
B 25
C Error
D None of these