Question: ACTIVITY 5 2 8 0 4 0 . 3 4 8 9 5 2 8 . 9 3 z q y 7 Jump to level

ACTIVITY
528040.3489528.93zqy7
Jump to level 1
The Play class has a default constructor with no parameters. Define a public overloaded constructor that takes two string parameters and an integer parameter for the title, the author, and the year of the play.
Ex: If the input is Airport Boyd 1913, then the output is:
Play: Undefined, Unspecified, -1
Play: Airport, Boyd, 1913
WrittenWork.java
public class Play {
private String title;
private String-author;
private int year;
public Play(){// Default constructor
title = "Undefined";
author = "Unspecified";
year =-1;
}
Y** your code goes here */
public void print(){
System.out.println("Play: "+ title +","+ author +","+ year);
}
}
1
2
 ACTIVITY 528040.3489528.93zqy7 Jump to level 1 The Play class has a

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!