Question: Programming Language-JAVA Exercise 1 Write a Java application that implements different types of insurance policies for employees of an organization Let Insurance be an abstract

Programming Language-JAVA
Exercise 1 Write a Java application that implements different types of insurance policies for employees of an organization Let Insurance be an abstract superclass and Health and Life two of its subclasses that describe respectively health insurance and life insurance The Insurance class defines an instance variable of type String to describe the type of insurance and an instance variable of type double to hold the monthly cost of that insurance. COMP 228 Implement the get methods for both variables of class Insurance. Declare also two abstract methods named setInsuranceCostO and display Infoo for this class. The Life and Health class should implement setInsuranceCost and display methods by setting the appropriate monthly fee and display the information for each insurance type. Write a driver class to test this hierarchy. This application should ask the user to enter the type of insurance and its monthly fee. Then, will create the appropriate object (Life or Health) and display the insurance information As you create each insurance object, place an Insurance reference to each new Insurance object into an array. Each class has its own setlnsuranceCost method. Write a polymorphic screen manager that walks through the array sending setInsuranceCost messages to each object in the array and displaying this information on the screen
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
