It protects data integrity. Frame the concept in practical terms so you can explain it during interview discussion.
Encapsulation involves hiding a class's internal data and requiring all interaction to occur through methods. This prevents external code from changing object state directly. For example, in a CartItem class, encapsulating the quantity field with methods like `setQuantity(int qty)` helps ensure that only valid quantities are set.