Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

--LONG JAVA CODING QUESTION-- Part A) Create a class named BloodData that includes String fields that hold a blood type as bloodType (the four blood

--LONG JAVA CODING QUESTION--

Part A)

Create a class named BloodData that includes String fields that hold a blood type as bloodType (the four blood types are O, A, B, and AB) and an Rh factor as rhFactor (the factors are + and ). Make sure to create the BloodData class, add the data fields to the BloodData class, create a default constructor that sets the fields to O and + and an overloaded constructor that requires values for both fields, create a default BloodData constructor, create an overloaded BloodData constructor, add set and get methods for the bloodType data field and add set and get methods for the rhFactor data field.

Part B)

Create an application named TestBloodData that declares two objects. Prompt the user for values for one, and use the default constructor values for the other. Display the details of both objects. Then change the values in the default object so it also uses the users values, and display the details for the object again to confirm the changes are made correctly. Make sure to create the TestBloodData application.

An example of the program is shown below:

Enter blood type >> AB Enter RH factor >> - The blood is type O+ The blood is type AB+ The blood is type AB+

Part C)

Create a class named Patient that includes an ID number (id), age (age), and BloodData (bloodData). Make sure to create the Patient class, add the data fields to the Patient class, Provide a default constructor that sets the ID number to 0, the age to 0, and the BloodData values to the default BloodData values (O and +). Create an overloaded constructor that provides values for each field.Create a default Patient constructor, Create an overloaded Patient constructor, Provide get methods for each field, Add a get method for the id data field, Add a get method for the age data field and Add a get method for the bloodData data field.

Part D)

Create an application called TestPatient that declares three Patient objects. Use all default values for one Patient object, prompt the user for values for the second Patient object, and for the third object, prompt the user for Patient data but use default values for that Patients BloodData. Make sure to create the TestPatient application.

An example of the program is shown below:

Enter ID number for patient >> 13 Enter age for patient 13 >> 23 Enter blood type for patient 13 >> AB Enter RH factor for patient 13 >> - Enter ID number for second patient >> 99 Enter age for patient 99 >> 12 Patient #0 age: 0 The blood is type O+ Patient #13 age: 23 The blood is type AB- Patient #99 age: 12 The blood is type O+

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

SQL Server Query Performance Tuning

Authors: Sajal Dam, Grant Fritchey

4th Edition

1430267429, 9781430267423

More Books

Students also viewed these Databases questions