Q. Which method reference form would match `Function<String, Integer> length = String::length;`?
β
Correct Answer: (B)
Instance method of an arbitrary object of a particular type
Explanation: `String::length` is an instance method of an arbitrary `String` object.