Q. Which method reference can replace `x -> x.toString()`?
β
Correct Answer: (A)
Object::toString
Explanation: `Object::toString` matches the lambda `x -> x.toString()`.