The scope of a public instance field is ________.
a.only the class in which it is defined
b.inside the parentheses of a method header
c.the instance methods and methods outside the class
d.inside the class but not inside any method

Respuesta :

Answer:

c.the instance methods and methods outside the class.

Explanation:

A public instance variable is an instance variable that is public. You can use an instance variable outside the class and the instance methods also can have access to that field since instance methods can directly access the instance methods and instance variables.