InterviewSolution
Saved Bookmarks
| 1. |
Briefly Explain Fcfs. |
|
Answer» FCFS is short for First-come, first-served, and is one TYPE of scheduling ALGORITHM. In this scheme, the process that requests the CPU first is ALLOCATED the CPU first. IMPLEMENTATION is managed by a FIFO queue. FCFS is short for First-come, first-served, and is one type of scheduling algorithm. In this scheme, the process that requests the CPU first is allocated the CPU first. Implementation is managed by a FIFO queue. |
|