All businesses want to keep their customers happy. To do that, many companies assign a certain amount of time to each customer to optimize the business. The alternative would be to hire more employees, which would lead to higher costs.  This problem requires you to simulate how authorities optimize the number of cashiers at the entrance of a toll bridge to make sure drivers are satisfied. Make the following assumptions: There is one cashier per line. The line works as a queue with no cars cutting the line or leaving it. One car arrives at the entrance every 10 seconds.  It takes 90 seconds (1.5 minutes) to process the payment, starting from the moment a cashier is available. Assume there is no pause between cars.  Your Tasks:  Design class CarInLine, with the following specifications: The class has two instance variables: arrivalTime and DepartureTime, stored as integers. Define a constructor that accepts an integer as an argument representing the arrival time, in which you set the departure time to zero, marking the beginning of a simulation. Create an appropriate set and get methods for the two instance variables. Implement a method totalTime() that returns an integer value representing the time spent in the queue, as the difference between the departure time and the arrival time.

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

All businesses want to keep their customers happy. To do that, many companies assign a certain amount of time to each customer to optimize the business. The alternative would be to hire more employees, which would lead to higher costs. 

This problem requires you to simulate how authorities optimize the number of cashiers at the entrance of a toll bridge to make sure drivers are satisfied. Make the following assumptions:

  • There is one cashier per line. The line works as a queue with no cars cutting the line or leaving it.
  • One car arrives at the entrance every 10 seconds. 
  • It takes 90 seconds (1.5 minutes) to process the payment, starting from the moment a cashier is available. Assume there is no pause between cars. 

Your Tasks: 

  1. Design class CarInLine, with the following specifications:
    • The class has two instance variables: arrivalTime and DepartureTime, stored as integers.
    • Define a constructor that accepts an integer as an argument representing the arrival time, in which you set the departure time to zero, marking the beginning of a simulation.
    • Create an appropriate set and get methods for the two instance variables.
    • Implement a method totalTime() that returns an integer value representing the time spent in the queue, as the difference between the departure time and the arrival time.
  2. Define ten queues, simulating the functionality of the process, increasing the number of cashiers from one, and collecting the average waiting time for each scenario. 
  3. Each simulation will work with the same number of cars, which is considered 100.    
  4. The maximum number of cashiers/toll booths is 10.
  5. Create the queue with link-based implementation.
  6. Create each queue with the corresponding number of cashiers, from 1 to 10, and record the average processing time.
  7. Save the processing time in an array of integer values representing the processing time.
  8. At the end of the simulation, display the results in a table with the number of cashiers and the average waiting time, measured in seconds.
  9. Choose the optimum number of cashiers, considering that the desired wait time is 1.5 minutes (90 seconds)
  10. Display the result of your simulation, which is the optimum number of cashiers.
  11. If you implement all the required methods correctly, the driver program should generate outputs similar to the following:
Number of cashiers:
Average time:
Optimum number of cashiers is: 9
Average processing time: 90
Press any key to continue. ..
1
2
3
5
6
7
8
9
4050
1805
1060
690
470
325
223
147
90
Transcribed Image Text:Number of cashiers: Average time: Optimum number of cashiers is: 9 Average processing time: 90 Press any key to continue. .. 1 2 3 5 6 7 8 9 4050 1805 1060 690 470 325 223 147 90
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Probability Problems
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
  • SEE MORE 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