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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started