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

1 Expert Approved Answer
Step: 1 Unlock

Carjava abstract class public abstract class Car instance variables protected so that they can be ac... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!