The keyword <code>private</code> in Java
- A
Means immutable
- B
Only restricts subclasses
- Ccheck_circle
Hides the member from outside the class (encapsulation)
- D
Allows access from any class
Explanation
<code>private</code> members are accessible only within the same class.