Process Management Flashcards

1
Q

Process

A

A process is a sub-program which is being executed

Process consists of: Program code, Data, Process State

The same program code may be used by different processes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Two Types Of Different Processes

A

Operating System Processes (e.g. opening files, creating directories)

User Processes (e,g, application)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Process Management - Spawning

A

Multi-tasking is something that allows a user to perform more than one computer task at a time

The Operating System can keep a track of where you are within those tasks

Your allowed to go from one to another without losing information

With Multi-tasking all processes are protected from each other

Multi-tasking also allows processes to “spawn” child processes

The Parent Process will either:

Continue to execute concurrently with its children

Will wait until some or all its children have terminated

How well did you know this?
1
Not at all
2
3
4
5
Perfectly