Q. Which type of method reference is demonstrated by `String::toUpperCase`?
β
Correct Answer: (B)
Instance method reference of an arbitrary object
Explanation: `String::toUpperCase` refers to an instance method of an arbitrary object of type String.