Question: (Java Language) Not sure what the output would be. I feel like the expirationDate may warrant an exception due to new not being used. Trying

(Java Language) Not sure what the output would be. I feel like the expirationDate may warrant an exception due to "new" not being used. Trying to not make this mistake again so an explanation would be helpful.
Incorrect Question 15 Consider the Date class: class Date { int year, month, day; public Date() { this.year = 1983; this.month = 9; this day - 3; public void setDate(int month, int day, int year) { this.year - year; this month = month; this day - day; public void print() { System.out.println(month + day + year What is the output from the following code snippet? Date dueDate = new Date(); dueDate.setDate(5, 20, 1980); Date expirationDate = dueDate; expirationDate.setDate(2, 28, 1989); dueDate.print(); 5/20/1980
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
