Chapter 10: Problem 2
What is encapsulation?
Short Answer
Expert verified
Provide an example to illustrate the concept.
Answer: Encapsulation is a key principle in object-oriented programming, where data and functions are wrapped up into a single unit called a 'class'. This hides and protects the internal state and behavior of objects from external interference. The benefits of encapsulation include modularity, data hiding, code reusability, and improved security. An example of encapsulation is the BankAccount class, which encapsulates account number and balance properties and provides methods to interact with these properties, ensuring the safety of the object's internal state.