Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Bartleby Related Questions Icon
Related questions
bartleby
Concept explainers
Question
Write an application (including algorithm ) that uses a class called "Book" (see
details below). The application must perform the following tasks.
Create an array of "Book" objects (i.e., array must be able to store 2
books).
Create 2 "Book" objects initialized as follows.
o title = "C++ Textbook"; Author = "Pete Parker"; Publisher =
"Cengage", ISBN = "0123456789"; subject = "ComputerProgramming ";
o title = "Java Textbook"; Author = "Bruce Wayne"; Publisher = "McGraw
Hill", ISBN = "9876543210"; subject = "Computer Programming";
Add the two books to the array.
o Assume the two publishers have merged into a new company called
"BookConglomerate". Use a loop to create statements to modify the
publisher field with the new publisher name.
Display the following information for both books
o Book Title (i.e., "C++ Textbook" or "Java Textbook")
o Author
o Publisher
o ISBN
o Subject
The Book class must contain the following.
Constructor with parameters that initialize all instance variables
title, author, publisher, ISBN, subject "string" instance variables
The "Book" class requires a header file, "Book.h"
Note: This assignment requires submission of multiple files
BookApp.cpp // contains "main( )" function
Book.cpp // contains "Book" member function definitions
Book.h // contains "Book" class definition
details below). The application must perform the following tasks.
Create an array of "Book" objects (i.e., array must be able to store 2
books).
Create 2 "Book" objects initialized as follows.
o title = "C++ Textbook"; Author = "Pete Parker"; Publisher =
"Cengage", ISBN = "0123456789"; subject = "Computer
o title = "Java Textbook"; Author = "Bruce Wayne"; Publisher = "McGraw
Hill", ISBN = "9876543210"; subject = "Computer Programming";
Add the two books to the array.
o Assume the two publishers have merged into a new company called
"BookConglomerate". Use a loop to create statements to modify the
publisher field with the new publisher name.
Display the following information for both books
o Book Title (i.e., "C++ Textbook" or "Java Textbook")
o Author
o Publisher
o ISBN
o Subject
The Book class must contain the following.
Constructor with parameters that initialize all instance variables
title, author, publisher, ISBN, subject "string" instance variables
The "Book" class requires a header file, "Book.h"
Note: This assignment requires submission of multiple files
BookApp.cpp // contains "main( )" function
Book.cpp // contains "Book" member function definitions
Book.h // contains "Book" class definition
Expert Solution
Check MarkThis question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
bartleby
This is a popular solution
bartleby
Trending nowThis is a popular solution!
bartleby
Step by stepSolved in 5 steps with 4 images
Knowledge Booster
Background pattern image
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
- // Declare data fields: a String named customerName, // an int named numItems, and // a double named totalCost.// Your code here... // Implement the default contructor.// Set the value of customerName to "no name"// and use zero for the other data fields.// Your code here... // Implement the overloaded constructor that// passes new values to all data fields.// Your code here... // Implement method getTotalCost to return the totalCost.// Your code here... // Implement method buyItem.//// Adds itemCost to the total cost and increments// (adds 1 to) the number of items in the cart.//// Parameter: a double itemCost indicating the cost of the item.public void buyItem(double itemCost){// Your code here... }// Implement method applyCoupon.//// Apply a coupon to the total cost of the cart.// - Normal coupon: the unit discount is subtracted ONCE// from the total cost.// - Bonus coupon: the unit discount is subtracted TWICE// from the total cost.// - HOWEVER, a bonus coupon only applies if the...arrow_forwardIncreasing the value of the length property adds more items to an array, but the items have null values until they are defined. True or Falsearrow_forwardMicrosoft Visual C# 7th edition. In Chapter 7, you modified the GreenvilleRevenue program to include a number of methods. Now, using your code from Chapter 7 Case Study 1, modify your program so every data entry statement uses a TryParse() method to ensure that each piece of data is the correct type. Any invalid user entries should generate an appropriate message that contains the word Invalid, and the user should be required to reenter the data. Cengage requirement for the shaded part is attached and I don't understand it. I need help with the highlighted part (getContestantData() method) please. Thanks using System; using static System.Console; using System.Globalization; class GreenvilleRevenue { static void Main() { int numLastYear; int numThisYear; double revenue; int fee = 25; const int MAX_CONTESTANTS = 30; string[] names = new string[MAX_CONTESTANTS]; char[] talents = new char[MAX_CONTESTANTS]; char[] talentCodes = { 'S', 'D', 'M', 'O'...arrow_forward
- JAVA I cannot figure this one out no matter what I do I cannot get it to run. Please write it in a student way not in an too advance way. Write an application containing three parallel arrays that hold 10 elements each. The first array hold four-digit student ID numbers, the second array holds first names, and the third array holds the students’ grade point averages. Use dialog boxes to accept a student ID number and display the student’s first name and grade point average. If a match is not found, display an error message that includes the invalid ID number and allow the user to search for a new ID number.arrow_forwardIn javaarrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Text book imageDatabase System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationText book imageStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONText book imageDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- Text book imageC How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONText book imageDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningText book imageProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education