Abstract -Abstract in English means existing in thought or as an idea without concrete existance. Abstract method -A method that is declared without an implementation abstract void moveTo(double x ,double y) Abstract class -If a class includes abstract methods, then the class itself must be declared abstract, as in: public abstract class PhoneModel{ abstract void switchoff(); //code} When an abstract class is subclass the subclass usually provides implementation for all of the methods in parent class If it doesn't , It must be declared abstract be declared abstract. Note- It is possible to create reference of or abstract class. It is not possible to create an object of an abstract class. We can also assign reference of an abstract class to the object of a concrete subclass. Interfaces in J...