Q. Which method reference type is demonstrated by `System.out::println`?
β
Correct Answer: (B)
Instance method reference of a specific object
Explanation: `System.out::println` refers to an instance method of a specific object (`System.out`).