1. Which access modifier makes a member accessible only within its own class?
The private modifier restricts access to members so they can be used only within the same class. It enforces encapsulation by preventing outside modification of internal data.
class Person { private int age; }