Question: Create an Interface Car. You will need the following methods in this interface : getNumberOfTyres, getMaxSpeed(), getNumberOfDoors();, getNumberOfLights(); Now create a concrete Car Honda that
Create an Interface Car. You will need the following methods in this interface :
getNumberOfTyres, getMaxSpeed(), getNumberOfDoors();, getNumberOfLights();
Now create a concrete Car Honda that implements this interface and return appropriate values.
After creating Honda create another class CivicSport that extends Honda and implements Car and add the following methods to it :
boolean hasGPS() {returns true;};
override getNumberOfDoors and return 2 as this is a sports car.
Finally write a class with a main method that prints out all the information about the CivicSport.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
