Problem Statement
Which access modifier is most commonly used in encapsulation to hide a field from external access?
Explanation
Using the private modifier restricts a field or method to the defining class only. External classes must use public or protected methods (getters/setters) to interact, which enforces encapsulation.