Computer Applications

This access specifier achieves the lowest level of accessibility.

  1. Public
  2. Protected
  3. Private
  4. Default

Encapsulation & Inheritance in Java

2 Likes

Answer

Private

Reason — Private access specifier achieves the lowest level of accessibility as a data member or member method declared as private is only accessible inside the class in which it is declared.

Answered By

1 Like


Related Questions