Q. What is the output of: `print(type(lambda x: x))`?
β
Correct Answer: (A)
<class 'function'>
Explanation: Lambdas are anonymous functions, and their type is `<class 'function'>`.