| 1. |
Which state of process defined the process being created |
|
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. |
|