Create a subclass of Vehicle called Car. Car should have additional attributes of: make (String)model (String)regType (String - values will be either "new" or "renew")regFee (float) In addition to the get/set methods for make, model, and regType, include the method calcFee, to calculate the registration fee according to the following conditions: if regType = renew, then the fee is $36else if regType = new, then the fee is $58.50
OOPs
In today's technology-driven world, computer programming skills are in high demand. The object-oriented programming (OOP) approach is very much useful while designing and maintaining software programs. Object-oriented programming (OOP) is a basic programming paradigm that almost every developer has used at some stage in their career.
Constructor
The easiest way to think of a constructor in object-oriented programming (OOP) languages is:
Create a subclass of Vehicle called Car. Car should have additional attributes of:
make (String)
model (String)
regType (String - values will be either "new" or "renew")
regFee (float)
In addition to the get/set methods for make, model, and regType, include the method calcFee, to calculate the registration fee according to the following conditions:
if regType = renew, then the fee is $36
else if regType = new, then the fee is $58.50
Trending now
This is a popular solution!
Step by step
Solved in 2 steps