which state of process defined the process being created
Answers
Answered by
1
Answer:
Start- This is the initial state when a process is first started/created.
Explanation:
Ready- The process is waiting to be assigned to a processor.
Running- Once the process has been assigned to a processor by the OS scheduler, the process state is set to running and the processor executes its instructions.
Waiting - Process moves into the waiting state if it needs to wait for a resource, such as waiting for user input, or waiting for a file to become available.
Terminated or Exit- Once the process finishes its execution, or it is terminated by the operating system, it is moved to the terminated state where it waits to be removed from main memory.
Similar questions