Question: * * Task 0 1 : * * Create the ` Person ` class. * * Task 0 2 : * * Add the `
Task : Create the Person class.
Task : Add the firstName and lastName data fields to the Person class.
Task : Include a blank constructor and an overloaded constructor.
Task : Add get methods for each data field in the Person class.
Task : Create the Couple class.
Task : Add the bride and groom data fields to the Couple class.
Task : Include a blank constructor and an overloaded constructor for the Couple class.
Task : Include get methods for each data field in the Couple class.
Task : Create the Wedding class.
Task : Add the coupleweddingDate and location data fields to the Wedding class.
Task : Include a blank constructor and an overloaded constructor for the Wedding class.
Task : Include get methods for the coupleweddingDate and location data fields of the Wedding class.
Task : 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
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
