Q. What is the output of `Runnable r = () -> System.out.println("Hello"); r.run();`?
β
Correct Answer: (B)
Hello
Explanation: This lambda prints 'Hello' when `run()` is invoked.