Saved Bookmarks
| 1. |
A system n processes, and with a non preemptive scheduler. What is the total number of scheduling possible? |
|
Answer» FCFS is a non-preemptive scheduling algorithm. Note:First come first serve suffers from convoy effect. Shortest Job First (SJF): Process which have the shortest burst TIME are scheduled first.If two processes have the same BUST time then FCFS is used to BREAK the tie. |
|