Question: Given an abstract class Car with abstract methods like getModel and getMaxSpeed . Create a class Suzuki with following characteristics Initialize member variable of
Given an abstract class Car with abstract methods like getModel andgetMaxSpeed.
Create a class Suzuki with following characteristics
- Initialize member variable of Car class using the super constructor which contains two parametersmodel and speed.
- Implement getModel &getMaxSpeed method inside theSuzuki class which returns value of car model and speed.
Input
Cervo
160
where,
- The first line contains a value of 'model'.
- The second line contains a value of 'speed'.
Output
Cervo
160
Step by Step Solution
3.40 Rating (156 Votes )
There are 3 Steps involved in it
Carjava abstract class public abstract class Car instance variables protected so that they can be ac... View full answer
Get step-by-step solutions from verified subject matter experts
