Question: * * Task 0 1 : * * Create the ` Person ` class. * * Task 0 2 : * * Add the `

**Task 01:** Create the `Person` class.
**Task 02:** Add the `firstName` and `lastName` data fields to the `Person` class.
**Task 03:** Include a blank constructor and an overloaded constructor.
**Task 04:** Add get methods for each data field in the `Person` class.
**Task 05:** Create the `Couple` class.
**Task 06:** Add the `bride` and `groom` data fields to the `Couple` class.
**Task 07:** Include a blank constructor and an overloaded constructor for the `Couple` class.
**Task 08:** Include get methods for each data field in the `Couple` class.
**Task 09:** Create the `Wedding` class.
**Task 10:** Add the `couple`,`weddingDate`, and `location` data fields to the `Wedding` class.
**Task 11:** Include a blank constructor and an overloaded constructor for the `Wedding` class.
**Task 12:** Include get methods for the `couple`,`weddingDate`, and `location` data fields of the `Wedding` class.
**Task 13:** Create the `TestWedding` program.
## Part A
Create a class named `Person` that holds two `String` objects for the persons first and last name (`firstName` and `lastName`). Include a blank constructor that takes no parameters and an overloaded constructor that requires an argument for each field.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock 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!