Q. Which of the following is a correct lambda expression with no parameters that returns 100?
β
Correct Answer: (A)
() -> 100
Explanation: The syntax `() -> 100` defines a lambda with no parameters returning 100.