ACTIVITY
Objective:
Use the First Come, First Served (FCFS) method to determine the order and completion time of processes.
Steps:
- Consider the following processes:
📊 Data TableScroll ↔
| Process | Arrival Time | Time Needed |
|---|---|---|
| P1 | 0s | 4s |
| P2 | 1s | 5s |
| P3 | 2s | 3s |
- Arrange the processes in the order they will run according to the FCFS method.
- Calculate the start and finish time for each process.
Answer the questions:
- What is the total time taken for all processes to finish?
- Which process had to wait the longest?