(Solved) : 1 Language Used Implementation Plan E Java C Python C Using Student Linked List Class Deve Q26839478 . . .
1. Language that will be used and implementation plan (i.e.Java, C#, Python, C++ using the student linked list class developedin COP 3530, or using standard library, both algorithms implementedin one executable or separate executable files, etc.) 2. PartialGantt chart for FCFS, AT LEAST 300 TIME UNITS 3. PROGRAM FLOW LOGICFOR FCFS to demonstrate that the learner understands the algorithm4. Partial Gantt chart for MLFQ, AT LEAST 300 TIME UNITS 5. PROGRAMFLOW LOGIC FOR MLFQ to demonstrate that the learner understands thealgorithm 6. Early version of code to indicate the learner isstarting the project. • The code should reflect the project. • Itis ok to submit early version of only one of the algorithms. • Thecode should include the initialization of the process data forspring 2018 Requirements • All assignments must be submitted in aPDF format • Save the file as LastName_MODULE6_CPU.pdf • Oneassignment per student Algorithms and data : 1. FCFS non preemptive(partial results provided) 2. MLFQ (partial results provided)Multilevel Feedback Queue (preemptive – absolute priority in higherqueues) Queue 1 uses RR scheduling with Tq = 6 Queue 2 uses RRscheduling with Tq = 12 Queue 3 uses FCFS All processes enter firstqueue 1. If time quantum (Tq) expires before CPU burst is complete,the process is downgraded to next lower priority queue. Processesare not downgraded when preempted by a higher queue level process.Once a process has been downgraded, it will not be upgraded.Assumptions: 1. All processes are activated at time 0 2. Assumethat no process waits on I/O devices. 3. After completing an I/Oevent, a process is transferred to the ready queue. 4. Waiting timeis accumulated while a process waits in the ready queue. ProcessData: process goes {CPU burst, I/O time, CPU burst, I/O time, CPUburst, I/O time,…….., last CPU burst} P1 { 6, 17, 8, 19, 12, 31,11, 18, 9, 22, 8, 26, 10 } P2 { 19, 38, 11, 24, 15, 21, 12, 27, 12,34, 11, 34, 9, 29, 9, 31, 7} P3 { 3, 37, 14, 41, 8, 30, 4, 19, 7,33, 5, 18, 4, 26, 5, 31, 16} P4 { 15, 35, 14, 41, 16, 45, 18, 51,14, 61, 13, 54, 16, 61, 15} P5 { 9, 24, 7, 21, 15, 31, 6, 26, 7,31, 3, 18, 6, 21, 6, 33, 3} P6 { 4, 38, 3, 41, 5, 29, 4, 26, 7, 32,4, 22, 3, 26, 5, 22, 8} P7 { 14, 36, 17, 31, 16, 32, 15, 41, 14,42, 17, 39, 16, 33, 15} P8 { 5, 14, 4, 33, 6, 31, 4, 31, 6, 27, 5,2
Expert Answer
Answer to 1 Language Used Implementation Plan E Java C Python C Using Student Linked List Class Deve Q26839478 . . .
OR