Question: In JAVA Design class CarInLine, with the following specifications: The class has two instance variables: arrivalTime and DepartureTime, stored as integers. Define a constructor that

In JAVA

  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: In JAVA Design class CarInLine, with the following specifications: The class has

2 1805 3 1060 4 690 5 470 6 325 223 7 223 9 90 10 90 147 Number of cashiers: 1 Average time: 4050 Optimum number of cashiers is: 9 Average processing time: 90 Press any key to continue

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!