What is Abstraction in java
Abstraction: Data Abstraction is the process of hiding certain details and showing only the essential information to the user Abstraction can be achieved either with abstract class or interface in java Program abstract class Student { abstract void paperarrear();//abstract method void colgatn()//non abstract method { System.out.println(“He will atn the cls regularly”); […]