Write a class named Book that has the following fields: ● author. The author field is a String object that holds the author's name. title. The title is a String object that holds the book's title. pages. The pages field is an int variable that holds the number of pages of the book. publisher. The publisher field is a String object that holds the publisher's title. phone. The phone field holds the publisher's phone number. What data type will you use for this field? Why?

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
Write a class named Book that has the following fields:
● author. The author field is a String object that holds the author's name.
title. The title is a String object that holds the book's title.
pages. The pages field is an int variable that holds the number of pages of the book.
publisher. The publisher field is a String object that holds the publisher's title.
● phone. The phone field holds the publisher's phone number. What data type will you use for this field?
Why?
●
●
●
Write appropriate mutator methods that store values in these fields, and accessor methods that return the
values in these fields.
Once you have written the class, write a separate program that creates three book objects to hold the
following data:
Author
Susan Meyers
Mark Jones
Joy Rogers
Title
Book1
Book2
Book3
Pages
200
120
325
Publisher
Publisher1
Publisher2
Publisher3
Phone Number
9195550110
9195550169
9195550114
The program should store this data in the three objects, then display the data for each employee on the
screen.
Transcribed Image Text:Write a class named Book that has the following fields: ● author. The author field is a String object that holds the author's name. title. The title is a String object that holds the book's title. pages. The pages field is an int variable that holds the number of pages of the book. publisher. The publisher field is a String object that holds the publisher's title. ● phone. The phone field holds the publisher's phone number. What data type will you use for this field? Why? ● ● ● Write appropriate mutator methods that store values in these fields, and accessor methods that return the values in these fields. Once you have written the class, write a separate program that creates three book objects to hold the following data: Author Susan Meyers Mark Jones Joy Rogers Title Book1 Book2 Book3 Pages 200 120 325 Publisher Publisher1 Publisher2 Publisher3 Phone Number 9195550110 9195550169 9195550114 The program should store this data in the three objects, then display the data for each employee on the screen.
Expert Solution
Step 1

Program Approach:-

1. Create the class Book1

2. Data members

private String author1
private String title1
private int pages1
private String publisher1
private String phone1

3. Create parameterized constructor

4.Create the user-defined function String getAuthor().This function does not contain any parameter.

5. Create the user-defined function void setAuthor(String author). This function does contain one parameter.

6.Create the user-defined function String getTitle().This function does not contain any parameter.

7. Create the user-defined function void setTitle(String title). This function does contain one parameter.

8.Create the user-defined function String getPages().This function does not contain any parameter.

9. Create the user-defined function void setPages(String pages). This function does contain one parameter.

10.Create the user-defined function String getPublisher().This function does not contain any parameter.

11. Create the user-defined function void setPublisher(String publisher). This function does contain one parameter.

12.Create the user-defined function String getPhone().This function does not contain any parameter.

13. Create the user-defined function void setPhone(String phone). This function does contain one parameter.

14. Create the object of the class

15. Call the function

16. Display the output

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education