please give give codes in java/python. C++ also possible but need it to be able to run.

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

Need answer for this.

Please help, i've asked this several times, but the codes couldn't run. If possible, please give give codes in java/python. C++ also possible but need it to be able to run.
TIA. 
Theres a txt file of data given. Below : 

 

Txt file name is A2data6.txt

6    6    
3    2    7
4    11    2
7    14    7
12    3    18
14    8    2
17    18    16
19    3    15
20    17    10
24    12    7
27    16    8
31    1    7
34    13    9
37    6    7
38    5    10
42    1    2
42    7    10
46    9    1
47    8    10
52    18    16
54    8    0
58    6    16
58    1    20
62    8    20
66    12    1
66    8    12
69    13    14
73    16    1
75    19    18
80    5    6
82    6    7
85    15    5
85    10    3
85    11    16
90    17    1
94    6    6
95    4    12
96    14    7
99    6    3
101    1    4
103    19    7
105    17    19
109    14    13
111    19    15
115    17    8
116    13    13
119    14    8
123    5    19
125    7    10
128    1    7
129    11    19
132    11    1
133    14    0
134    16    18
139    17    1
141    4    0
142    19    5
144    17    17
146    3    10
147    12    5
150    11    10
155    8    18
156    0    18
159    3    14
164    18    2
168    5    3
171    6    10
174    5    19
174    10    14
177    11    5
181    10    5
185    2    0
189    12    8
191    3    3
193    7    0
195    17    10
199    2    8
203    16    5
205    10    11
207    6    7
210    8    17
212    8    3
213    14    7
216    1    10
219    15    16
223    16    5
224    13    6
226    8    18
227    18    13
232    8    18
234    2    18
235    4    14
237    2    12
239    18    7
240    4    17
242    5    18
246    7    4
246    9    10
249    2    7
252    18    7
255    9    1
0    0    0

Page 2
secondary, with a single queue associated with each set. Customers arrive in
the system and are served first by a primary server and, on completion of this
service, by a secondary server. If all servers of a particular type are busy, the
customer will enter either the primary or secondary queue as appropriate.
The simulation should be run until the last customer has left the system.
Output, to standard output, for each version of the queuing process will consist
of the following data:
• Number of people served.
Time last service request is completed.
• Average total service time.
•
Average total time in queue(s). Both overall and separate.
Average length of queue. For each queue and overall.
•
Maximum Length of queue. For each queue and overall.
• Total idle time for each server.
NOTE: Since the question is to assess your understanding of the concept of Queue, you
are NOT allowed to use the library of the language that implement queue. You need to
write the codes (implementation) of Queue for this exercise. (See point (iii).)
Other requirements:
.
Software (programming language):
o Java Version - JDK 6 update 17 or above (Using Windows)
o C++ / C compiler - g++ 4.0 or above (Using Linux)
o Python 3.x
Operating System:
o Windows XP Professional,
o Windows Vista Home / Business,
o Windows 7,
o
Windows 10,
o Ubuntu Linux 8.04 LTS or above.
If you use a different environment, please make sure that you MUST check with
your lecturers first!
For C++ solution, students are to give batch / make files for compilation.
Students are to place all compilation and instructions on how to run the program
inside a readme.txt file. The markers will refer to this file when marking.
Programs should be appropriately documented with comments.
Transcribed Image Text:Page 2 secondary, with a single queue associated with each set. Customers arrive in the system and are served first by a primary server and, on completion of this service, by a secondary server. If all servers of a particular type are busy, the customer will enter either the primary or secondary queue as appropriate. The simulation should be run until the last customer has left the system. Output, to standard output, for each version of the queuing process will consist of the following data: • Number of people served. Time last service request is completed. • Average total service time. • Average total time in queue(s). Both overall and separate. Average length of queue. For each queue and overall. • Maximum Length of queue. For each queue and overall. • Total idle time for each server. NOTE: Since the question is to assess your understanding of the concept of Queue, you are NOT allowed to use the library of the language that implement queue. You need to write the codes (implementation) of Queue for this exercise. (See point (iii).) Other requirements: . Software (programming language): o Java Version - JDK 6 update 17 or above (Using Windows) o C++ / C compiler - g++ 4.0 or above (Using Linux) o Python 3.x Operating System: o Windows XP Professional, o Windows Vista Home / Business, o Windows 7, o Windows 10, o Ubuntu Linux 8.04 LTS or above. If you use a different environment, please make sure that you MUST check with your lecturers first! For C++ solution, students are to give batch / make files for compilation. Students are to place all compilation and instructions on how to run the program inside a readme.txt file. The markers will refer to this file when marking. Programs should be appropriately documented with comments.
Part B:
Page I
Your task for this assignment is to investigate some of the properties of queues.
You should write a Java, C++, or Python program which simulates the queuing
and service of a set of requests at a fast food restaurant.
Input consists of the following data:
• The number of primary servers in the system.
• The number of secondary servers in the system.
• A set of service requests each consisting of an arrival time and two service
times. This set is terminated by a dummy record with arrival time and service
times all equal to 0. (Note: the arrival times are sorted in ascending order).
For example, the data file:
32
1 2 3
335
322
432
524
000
indicates there are 3 primary servers and 2 secondary servers. The first service
(customer) arrives in minute 1 (first minute of simulation), and the service requires
2 minutes of primary server's time and 3 minutes of secondary server's time. The
second service (customer) arrives in minute 3, and it requires 3 minutes of primary
server's time and 5 minutes of secondary server's time, etc.
The last entry of the data file 0 0 0 indicate the end of simulation. (Note that it is
possible to have two customers arrive in the same time as shown in the above
sample data (second and third customers).)
Your program should read the name of the data file from standard input and
then read the data in the named file into the simulation. For example, the
following command will trigger the execution of your program by reading the
data file provided:
./QueueSim datafile.dat or
java QueueSim datafile.dat
The simulation is to be of a system with two sets of servers, primary and
Transcribed Image Text:Part B: Page I Your task for this assignment is to investigate some of the properties of queues. You should write a Java, C++, or Python program which simulates the queuing and service of a set of requests at a fast food restaurant. Input consists of the following data: • The number of primary servers in the system. • The number of secondary servers in the system. • A set of service requests each consisting of an arrival time and two service times. This set is terminated by a dummy record with arrival time and service times all equal to 0. (Note: the arrival times are sorted in ascending order). For example, the data file: 32 1 2 3 335 322 432 524 000 indicates there are 3 primary servers and 2 secondary servers. The first service (customer) arrives in minute 1 (first minute of simulation), and the service requires 2 minutes of primary server's time and 3 minutes of secondary server's time. The second service (customer) arrives in minute 3, and it requires 3 minutes of primary server's time and 5 minutes of secondary server's time, etc. The last entry of the data file 0 0 0 indicate the end of simulation. (Note that it is possible to have two customers arrive in the same time as shown in the above sample data (second and third customers).) Your program should read the name of the data file from standard input and then read the data in the named file into the simulation. For example, the following command will trigger the execution of your program by reading the data file provided: ./QueueSim datafile.dat or java QueueSim datafile.dat The simulation is to be of a system with two sets of servers, primary and
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Algebraic Expressions
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