Question: In the class definition, initialize the private fields author ( string ) and title ( string ) with the default values Undefined and Unstated, respectively.
In the class definition, initialize the private fields author string and title string with the default values "Undefined" and "Unstated", respectively.
Ex: If the input is Lara Rose, then the output is:
Default values:
Author: Undefined, Title: Unstated
After mutator methods:
Author: Lara, Title: Rose
NoteThe class's print method is called before and after the input is passed to the setters.
public class Book
private x your code goes here
private Your code goes here
public void setauthorString bookAuthor
author bookAuthor;
public void setTitlestring bookTitle
title bookTitle;
public void print
System.out.printlnAuthor: author Title: title;
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
