133k views
2 votes
Create a package called com.automobile. Define an abstract class called Vehicle. Vehicle class has the following abstract methods: public String getModelName() public String getRegistrationNumber() public String getownerNamet Create twowheeler subpackage under automobile package Hero class extends automobile.yebicleclass with the following methods public int getspeed() returns the current speed of the vehicle. public void radio provides facility to control the radio device Honda class extends comatomobilevebicle class with the following methods public int getSpeed) Returns the current speed of the vehicle. public void caplaver() - provides facility to control the cd player device which is available in the car. Create a test class to test the methods available in all these child class.

User Her
by
7.7k points

1 Answer

2 votes

Final answer:

The student's question involves creating an abstract class Vehicle within the com.automobile package and defining two subclasses Hero and Honda with specific methods, including a test class to validate their functionality.

Step-by-step explanation:

Abstract Vehicle Class and Subclasses in Java

To address the student's request, one needs to create an abstract class Vehicle inside the package com.automobile. This class must contain three abstract methods: getModelName(), getRegistrationNumber(), and getOwnerName. Subsequently, two subclasses are defined within a twowheeler subpackage: Hero and Honda. The Hero class extends Vehicle, implementing methods to get the speed of the vehicle and control the radio. The Honda class also extends Vehicle, with methods to get the vehicle's speed and to control a CD player. Lastly, a test class is necessary to confirm the functionality of methods in both Hero and Honda classes.

User Sepehr
by
7.7k points