Q. What is the equivalent method reference for `x -> x.toString()`?
β
Correct Answer: (A)
Object::toString
Explanation: `Object::toString` returns the string representation of an object.