Q. Can a lambda expression throw a checked exception?
β
Correct Answer: (B)
Yes, if declared in the functional interface
Explanation: A lambda can throw a checked exception if the method in the functional interface declares it.