Q. Which method reference is commonly used to print each element of a collection?
β
Correct Answer: (C)
System.out::println
Explanation: `System.out::println` prints each element when used in forEach or streams.