traffic department would like you to assess their vehiclelicensing process. The following are known estimates:
- Number of service stations = 1
- Number service hours a day = 8
- Probability of a new arrival every minute = 0.65
- Total capacity of waiting area = 100
- Maximum service time = 8 minutes
- Create a simple Customer Class
- Use Java’s Queue library to model a waiting line
- Run several simulations as needed to assess the current stateof the department
- Suggest solutions to achieve the following desired parameters:
- Average waiting time = 15 minutes
- Min number of served customers = 1000
- Max number of left in line = 50
- Max waiting customers fits the waiting area cap.
Solution
OR
OR