0 votes
in JAVA by

Which of the following is NOT a type of method reference in Java?

a) Reference to a static method

b) Reference to an instance method of an object of a particular class

c) Reference to an instance method of an arbitrary object of a particular class

d) Reference to an instance variable of an object

1 Answer

0 votes
by
Answer: d) Reference to an instance variable of an object

Explanation: There is no type of method reference in Java that refers to an instance variable of an object.
...