Operating System Unit 2
Que.1 Explain different states of a process with a suitable diagram Ans:- New This is the state when the process has just been created. It is the initial state in the process life cycle. Ready In the ready state, the process is waiting to be assigned the processor by the short term scheduler, so it can run. This state is immediately after the new state for the process. Ready Suspended The processes in ready suspended state are in secondary memory. They were initially in the ready state in main memory but lack of memory forced them to be suspended and gets placed in the secondary memory. Running The process is said to be in running state when the process instructions are being executed by the processor. This is done once the process is assigned to the processor using the short-term scheduler. Blocked The process is in blocked state if it is waiting for some event to occur. This event may be I/O as the I/O events are executed in the main memory and d...