Question: CHALLENGE ACTIVITY 7 . 9 . 3 : Constructor overloading. 5 2 8 0 4 0 . 3 4 8 9 5 2 8 .

CHALLENGE
ACTIVITY
7.9.3: Constructor overloading.
528040.3489528.93zqy7
Jump to level 1
The Book class has a default constructor with no parameters. Define a public overloaded constructor that takes two string parameters and initializes the book's title and author with the strings.
Ex: If the input is Gold Cook, then the output is:
Book: None, None
Book: Gold, Cook
Library.java
public class Book {
private String title;
private String author;
public Book(){// Default constructor
title = "None";
}
author = "None";
V* Your code goes here */
public void print(){
System.out.println("Book: "+ title +","+ author);
}
1
2
3
 CHALLENGE ACTIVITY 7.9.3: Constructor overloading. 528040.3489528.93zqy7 Jump to level 1 The

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!