Encapsulation: it means wrapped up, hiding,security or adding some extra layer. Why do use encapsulation in programming.The answer is simple just to provide the security to the data. For example, we will take Student class class Student{
public int id;
public String name;
public String address;
} class is just…