Process management in the SO

1

For the operating system, is a process regardless of its state a running program?

The test question was either true or false . I chose fake , but the answer was wrong. Can anyone explain why?

    
asked by anonymous 22.10.2015 / 14:46

1 answer

1

In multitasking systems, only when a process has its instructions interpreted and executed by the processor is that its state is called 'under execution'.

There are several possible states - 'hold', 'locked' and 'created', among others. None of these are considered 'under execution'.

From this point of view, it seems to me that your teacher is correct.

    
22.10.2015 / 14:59