
1. Data Hiding :
Hiding of the data , so that outside class can not access that data.By using the private modifier we can implement the data hiding.
The main advantage of data hiding is we can achieve the security.
Example of data hiding:
public class Account
{
private double balance=20000;...