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
Concept explainers
Question
JAVA PROGRAM
Homework #1. Chapter 7. PC# 2. Payroll Class (page 488-489)
Write a Payroll class that uses the following arrays as fields:
* employeeId. An array of seven integers to hold employee identification numbers. The array should be initialized with the following numbers: 5658845 4520125 7895122 8777541 8451277 1302850 7580489
* hours. An array of seven integers to hold the number of hours worked by each employee
* payRate. An array of seven doubles to hold each employee’s hourly pay rate
* wages. An array of seven doubles to hold each employee’s gross wages
The class should relate the data in each array through the subscripts. For example, the number in element 0 of the hours array should be the number of hours worked by the
employee whose identification number is stored in element 0 of the employeeId array. That same employee’s pay rate should be stored in element 0 of the payRate array.
The class should have a method that accepts an employee’s identification number as an argument and returns the
gross pay for that employee. Demonstrate the class in a complete program that displays each employee number and asks the user to enter that employee’s hours and pay rate. It should then display each employee’s identification number and gross wages.Input Validation: Do not accept negative values for hours or numbers less than 6.00 for pay rate.
THE CODE SHOULD OUTPUT THE TWO TEST CASES LISTED BELOW WHICH IS THE CORRECT OUTPUT. I PROVIDED SCHEENSHOTS OF Show what's missing" switch FOR CLARITY. PLEASE! THE CODE KEEPS FAILING IN HYPERGRADE, PLEASE MODIFY IT SO IT PASSES IN HYPERGRADE. THANK YOU.
Test Case 1
Please enter hours for employee ID: 5658845\n
41ENTER
Please enter pay rate for employee ID: 5658845\n
11ENTER
Please enter hours for employee ID: 4520125\n
42ENTER
Please enter pay rate for employee ID: 4520125\n
12ENTER
Please enter hours for employee ID: 7895122\n
43ENTER
Please enter pay rate for employee ID: 7895122\n
13ENTER
Please enter hours for employee ID: 8777541\n
44ENTER
Please enter pay rate for employee ID: 8777541\n
14ENTER
Please enter hours for employee ID: 8451277\n
45ENTER
Please enter pay rate for employee ID: 8451277\n
15ENTER
Please enter hours for employee ID: 1302850\n
46ENTER
Please enter pay rate for employee ID: 1302850\n
16ENTER
Please enter hours for employee ID: 7580489\n
47ENTER
Please enter pay rate for employee ID: 7580489\n
17ENTER
===========================\n
Employee ID\tGross Wages\n
===========================\n
5658845\t$ 451.00\n
4520125\t$ 504.00\n
7895122\t$ 559.00\n
8777541\t$ 616.00\n
8451277\t$ 675.00\n
1302850\t$ 736.00\n
7580489\t$ 799.00\n
41ENTER
Please enter pay rate for employee ID: 5658845\n
11ENTER
Please enter hours for employee ID: 4520125\n
42ENTER
Please enter pay rate for employee ID: 4520125\n
12ENTER
Please enter hours for employee ID: 7895122\n
43ENTER
Please enter pay rate for employee ID: 7895122\n
13ENTER
Please enter hours for employee ID: 8777541\n
44ENTER
Please enter pay rate for employee ID: 8777541\n
14ENTER
Please enter hours for employee ID: 8451277\n
45ENTER
Please enter pay rate for employee ID: 8451277\n
15ENTER
Please enter hours for employee ID: 1302850\n
46ENTER
Please enter pay rate for employee ID: 1302850\n
16ENTER
Please enter hours for employee ID: 7580489\n
47ENTER
Please enter pay rate for employee ID: 7580489\n
17ENTER
===========================\n
Employee ID\tGross Wages\n
===========================\n
5658845\t$ 451.00\n
4520125\t$ 504.00\n
7895122\t$ 559.00\n
8777541\t$ 616.00\n
8451277\t$ 675.00\n
1302850\t$ 736.00\n
7580489\t$ 799.00\n
Test Case 2
Please enter hours for employee ID: 5658845\n
-1ENTER
Hours cannot be negative.\n
Please enter hours for employee ID: 5658845\n
41ENTER
Please enter pay rate for employee ID: 5658845\n
1ENTER
Employee pay rate cannot be less than $6.00/hour.\n
Please enter pay rate for employee ID: 5658845\n
11ENTER
Please enter hours for employee ID: 4520125\n
-2ENTER
Hours cannot be negative.\n
Please enter hours for employee ID: 4520125\n
42ENTER
Please enter pay rate for employee ID: 4520125\n
2ENTER
Employee pay rate cannot be less than $6.00/hour.\n
Please enter pay rate for employee ID: 4520125\n
12ENTER
Please enter hours for employee ID: 7895122\n
-3ENTER
Hours cannot be negative.\n
Please enter hours for employee ID: 7895122\n
43ENTER
Please enter pay rate for employee ID: 7895122\n
3ENTER
Employee pay rate cannot be less than $6.00/hour.\n
Please enter pay rate for employee ID: 7895122\n
13ENTER
Please enter hours for employee ID: 8777541\n
-4ENTER
Hours cannot be negative.\n
Please enter hours for employee ID: 8777541\n
44ENTER
Please enter pay rate for employee ID: 8777541\n
4ENTER
Employee pay rate cannot be less than $6.00/hour.\n
Please enter pay rate for employee ID: 8777541\n
14ENTER
Please enter hours for employee ID: 8451277\n
-5ENTER
Hours cannot be negative.\n
Please enter hours for employee ID: 8451277\n
45ENTER
Please enter pay rate for employee ID: 8451277\n
5ENTER
Employee pay rate cannot be less than $6.00/hour.\n
Please enter pay rate for employee ID: 8451277\n
15ENTER
Please enter hours for employee ID: 1302850\n
-6ENTER
Hours cannot be negative.\n
Please enter hours for employee ID: 1302850\n
46ENTER
Please enter pay rate for employee ID: 1302850\n
1.6ENTER
Employee pay rate cannot be less than $6.00/hour.\n
Please enter pay rate for employee ID: 1302850\n
16ENTER
Please enter hours for employee ID: 7580489\n
-7ENTER
Hours cannot be negative.\n
Please enter hours for employee ID: 7580489\n
47ENTER
Please enter pay rate for employee ID: 7580489\n
1.7ENTER
Employee pay rate cannot be less than $6.00/hour.\n
Please enter pay rate for employee ID: 7580489\n
17ENTER
===========================\n
Employee ID\tGross Wages\n
===========================\n
5658845\t$ 451.00\n
4520125\t$ 504.00\n
7895122\t$ 559.00\n
8777541\t$ 616.00\n
8451277\t$ 675.00\n
1302850\t$ 736.00\n
7580489\t$ 799.00\n
-1ENTER
Hours cannot be negative.\n
Please enter hours for employee ID: 5658845\n
41ENTER
Please enter pay rate for employee ID: 5658845\n
1ENTER
Employee pay rate cannot be less than $6.00/hour.\n
Please enter pay rate for employee ID: 5658845\n
11ENTER
Please enter hours for employee ID: 4520125\n
-2ENTER
Hours cannot be negative.\n
Please enter hours for employee ID: 4520125\n
42ENTER
Please enter pay rate for employee ID: 4520125\n
2ENTER
Employee pay rate cannot be less than $6.00/hour.\n
Please enter pay rate for employee ID: 4520125\n
12ENTER
Please enter hours for employee ID: 7895122\n
-3ENTER
Hours cannot be negative.\n
Please enter hours for employee ID: 7895122\n
43ENTER
Please enter pay rate for employee ID: 7895122\n
3ENTER
Employee pay rate cannot be less than $6.00/hour.\n
Please enter pay rate for employee ID: 7895122\n
13ENTER
Please enter hours for employee ID: 8777541\n
-4ENTER
Hours cannot be negative.\n
Please enter hours for employee ID: 8777541\n
44ENTER
Please enter pay rate for employee ID: 8777541\n
4ENTER
Employee pay rate cannot be less than $6.00/hour.\n
Please enter pay rate for employee ID: 8777541\n
14ENTER
Please enter hours for employee ID: 8451277\n
-5ENTER
Hours cannot be negative.\n
Please enter hours for employee ID: 8451277\n
45ENTER
Please enter pay rate for employee ID: 8451277\n
5ENTER
Employee pay rate cannot be less than $6.00/hour.\n
Please enter pay rate for employee ID: 8451277\n
15ENTER
Please enter hours for employee ID: 1302850\n
-6ENTER
Hours cannot be negative.\n
Please enter hours for employee ID: 1302850\n
46ENTER
Please enter pay rate for employee ID: 1302850\n
1.6ENTER
Employee pay rate cannot be less than $6.00/hour.\n
Please enter pay rate for employee ID: 1302850\n
16ENTER
Please enter hours for employee ID: 7580489\n
-7ENTER
Hours cannot be negative.\n
Please enter hours for employee ID: 7580489\n
47ENTER
Please enter pay rate for employee ID: 7580489\n
1.7ENTER
Employee pay rate cannot be less than $6.00/hour.\n
Please enter pay rate for employee ID: 7580489\n
17ENTER
===========================\n
Employee ID\tGross Wages\n
===========================\n
5658845\t$ 451.00\n
4520125\t$ 504.00\n
7895122\t$ 559.00\n
8777541\t$ 616.00\n
8451277\t$ 675.00\n
1302850\t$ 736.00\n
7580489\t$ 799.00\n
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 6 images
Knowledge Booster
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
- 1- Write a class called items that has member variables name (string), price (double), quantity (integer). In main program, create an array of type items called arrayltem and store several item objects in this array. Note that main should create several item objects and save these objects in arrayltem. Write a static method called totalCost that accepts an array of items. This static method must calculate and return the total cost of items stored in the array. 2- Write a generic method called minimum that accepts four items and find the minimum of them. 3- Test your class with Integer, Double, Character, String and Car objects.arrow_forwardWrite a C# program that uses a class called ClassRegistration as outlined below: The ClassRegistration class is responsible for keeping track of the student id numbers for students that register for a particular class. Each class has a maximum number of students that it can accommodate. Responsibilities of the ClassRegistration class: It is responsible for storing the student id numbers for a particular class (in an array of integers) It is responsible for adding new student id numbers to this list (returns boolean) It is responsible for checking if a student id is in the list (returns a boolean) It is responsible for getting a list of all students in the class (returns a string). It is responsible for returning the number of students registered for the class (returns an integer) It is responsible for returning the maximum number of students the class is allowed (returns an integer) It is responsible for returning the name of the class. (returns a string)arrow_forwardWrite a program in Java that handles the order list for an online retailer. Your program should contain a minimum of three classes: Order Class Display Class Main Class Create a Order Class that uses a queue to hold the orders in the order they were taken. The queue should contain the customer last name, order number, and order total cost. Create a Display Class that will store a copy of the order queue in two arrays. Each array will contain the order list but one will be sorted by name and the other sorted by order number. When a order is taken and stored in the Order Class the program will update theDisplay Class arrays automatically sort them in descending order using quick sort and outputs the the contents to the console upon each entry of new data. Create a Main Class that will handle operator data input and when an order is added or removed, the program will update the Order Class and Display Class. The user will be presented a menu to add a order, remove a order and display…arrow_forward
- Ajva.arrow_forwardMissing line of code pleasearrow_forwardCreate a class IntArray. Create two constructors. Nullary constructor create an array of size 10 and initiazes all values to 0. Parametrized constructor has signature IntArray(int num, int s). Thiscreates an array of size s and initializes all values. c++arrow_forward
- In C#, Make any necessary modifications to the RushJob class so that it can be sorted by job number. Modify the JobDemo3 application so the displayed orders have been sorted. Save the application as JobDemo4. An example of the program is shown below: Enter job number 22 Enter customer name Joe Enter description Powerwashing Enter estimated hours 4 Enter job number 6 Enter customer name Joey Enter description Painting Enter estimated hours 8 Enter job number 12 Enter customer name Joseph Enter description Carpet cleaning Enter estimated hours 5 Enter job number 9 Enter customer name Josefine Enter description Moving Enter estimated hours 12 Enter job number 21 Enter customer name Josefina Enter description Dog walking Enter estimated hours 2 Summary: RushJob 6 Joey Painting 8 hours @$45.00 per hour. Rush job adds 150 premium. Total price is $510.00 RushJob 9 Josefine Moving 12 hours @$45.00 per hour. Rush job adds 150 premium. Total price is $690.00 RushJob 12 Joseph Carpet cleaning 5…arrow_forward#Array question.arrow_forwardWrite the following program with C++ Create a class: Bill_Generator The Purchased_item should be having the following data members itemPrice //for per unit price itemQty //for quantity purchased itemAmount[n] // for price of each item, n represent size of the array total_amount //for the total amount of bill that is to be paid items[n] //an array of purchased_item(item names); n represent size of the array class should have the following member functions Constructor : will take a parameter to set size of items array. getIteminfo(): will take item information calcBill(): will calculate the bill for the items purchased. Give discount of 5% for the purchase greater than 3000 pkr. showBillInfo(): display the bill with items information, given below the output item price quantity Amount LUX 50 5 250 TUC 15 3 45arrow_forward
- Write code for PersonManagement class. This class contains the array of Person class (code is given below) and also following methods: set: This method receives the array of person class and set the attribute. displayAll: This method will display values of all persons. sort: This method will sort the array according to age values of the persons with ascending order using Selection Sort. reverse: This method will reverse the order of the array. getPersons: This method will return the array of the persons (attribute). displayEvenAgePerson: This method will display all those persons values who have even age. displayOddAgePerson: This method will display all those persons values who have odd age. displayPrimeAgePerson: This method will display only those persons values who have prime number age. Following is the class of Person: public class Person { private String Name; public int age; public void set(String Name, int age) { this.Name =…arrow_forwardIn C# Use a one-dimensional array to solve the following problem. Write a class called ScoreFinder. This class receives a single dimensional integer array representing passer ratings for NFL players as an argument for its constructor. The test class will provides this argument. The test class then calls upon a method from the ScoreFinder class to start the process of finding a specific rating, which will be provided by the user. The method will iterate through the array and find any matching values. For all the matches that are found, the method will note the index of the cell along with its value. At completion, the method will print a list of all the indices and the associated scores along with a count of all the matching values.arrow_forwardBasic javaarrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education
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)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education