InterviewSolution
Saved Bookmarks
| 1. |
What is Round Robin Scheduling? |
|
Answer» The Round Robin (RR) scheduling algorithm is designed especially for time sharing systems. Jobs (processes) are assigned and processor time in a circular method. For example take three jobs A, B, C. First the job A is assigned to CPU then job B and job C and then again A, B and C and so on. |
|