0
Well Encapsulation is the concept that binds the data and functions of the class together, and keeps both safe from outside. So a class could have private, protected and public members. By default, all items defined in a class are private. So a private member cannot be accessed from outside the class ,and that assures safety for both inside&outside code



