InterviewSolution
| 1. |
What is starvation and aging in OS? |
|
Answer» When we use Priority Scheduling or Shortest Job First Scheduling, Starvation can happen, This algorithm is mostly used in CPU schedulers Starvation: It is GENERALLY a problem that usually occurs when a process has not been able to get the required resources it needs for progress with its EXECUTION for a long period of time. In this condition, low priority processes get BLOCKED and only high priority processes proceed towards completion because of which low priority processes suffer from lack of resources. |
|