Question: 3. Create a class called Holiday to represent a holiday. An object of class Holiday represents a holiday during the year. This class has three

 3. Create a class called Holiday to represent a holiday. An

3. Create a class called Holiday to represent a holiday. An object of class Holiday represents a holiday during the year. This class has three instance variables: name, which is a String representing the name of the holiday. day, which is an int representing the day of the month of the holiday. month, which is a String representing the month the holiday is in. a. Write a constructor for the class Holiday, which takes a String representing the name, an int representing the day, and a String representing the month as its arguments, and sets the class variables to these values. b. Provide a mutator method (set) and accessor method (get) for each instance variable. c. Write a method in SameMonth, which compares two instances of the class Holiday, and returns the Boolean value true if they have the same month, and false if they do not. d. Write a method toString that prints the message: The holiday is "name" and it is on month, day. Where name, month and day are the name, month and day of the holiday. e. Write a piece of code that creates a Holiday instance with the name "National Day", with the day "16", and with the month "December", then call the method toString() to print the holiday information

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 Databases Questions!