- Create an abstract class Vehicle which contains an abstract method run() - Create a subclass Car which extends the Vehicle class and implements the run method that prints “Car is running on 4 wheels” - Also create a subclass Bike which again extends the Vehicle class and implements the run method that prints “Bike is running on 2 wheels” - Finally create a Demo class containing the main method to verify the results`