Question: I have to write a Java class Book so that the expected output is produced. Consider the following test code placed in the test class
I have to write a Java class Book so that the expected output is produced.

Consider the following test code placed in the test class within the main() methood Your task is to write a Java class Book so that the expected output is produced For example Test Result int year = 2009; String title "Heart and Empire"; Book b1-new Book (title, year); System.out.println(b1); b1.setRead (true); System.out.println(b1); title- "Desert of the Shining Stone"; Book b2 = new Book(title); System.out.println(b2); b2.setRead (true); System.out.println("The book has now been read: " b2.isRead)); This Book title: Heart and Empire, year of publication: 2009, read: false This Book title: Heart and Empire, year of publication: 2009, read: true This Book title: Desert of the Shining Stone, year of publication: 1960, read: false The book has now been read: true Answer: (penalty regime: 0,10,20,50, %) 1 public class Book f 2 II TODO your code goes here
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
