Q. What does the following lambda expression represent: `x -> x % 2 == 0`?
β
Correct Answer: (B)
Checks if a number is even
Explanation: This lambda checks whether a number is even.