15 - Processes Flashcards

1
Q

What is a process in operating systems?

A

A process is an active entity representing a program in execution, complete with its own context such as processor state, memory, and I/O resources.

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

What is the difference between a program and a process?

A

A program is a passive set of stored instructions, while a process is the active execution of those instructions with its own resources and context.

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

What information is contained in a Process Control Block (PCB)?

A

A PCB contains the process ID (PID), current state (running, waiting, etc.), CPU register values, scheduling priority, and I/O resource information.

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

What are the main stages of a process’s life cycle?

A

The stages are: New, Ready, Running, Waiting/Blocked, and Terminated.

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

What are the typical state transitions in a process life cycle?

A

Transitions include NEW to READY (admission), READY to RUNNING (dispatch), RUNNING to READY (timeout), RUNNING to BLOCKED (waiting for an event), BLOCKED to READY (event occurrence), and RUNNING to EXIT (completion).

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

How does an operating system support multitasking through process management?

A

The OS manages multiple processes simultaneously using mechanisms like the Process Control Block and scheduling algorithms to allocate CPU time efficiently.

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

What is process scheduling, and what are some common scheduling algorithms?

A

Process scheduling determines which process runs next. Common algorithms include Round Robin, Shortest Job First (SJF), and First-In First-Out (FIFO).

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

What performance metrics are optimized by process scheduling?

A

Scheduling optimizes throughput (number of processes completed per unit time) and latency, including turnaround time, response time, and waiting time.

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

What are the key steps involved in process creation?

A

Process creation involves assigning a unique PID, allocating memory, initializing the PCB (including state, CPU context, and scheduling parameters), and placing the process in the READY queue.

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

How do Unix/Linux systems create a new process using fork() and exec()?

A

In Unix/Linux, fork() duplicates an existing process, and exec() loads a new program into the process’s memory space, allowing the shell to launch commands like ls.

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

How does process creation in Windows differ from Unix/Linux?

A

Windows uses CreateProcess, which combines the functionalities of fork() and exec() by creating a new process with its own memory space and specifying the program to run.

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

What are the primary ways in which a process can terminate?

A

A process can terminate normally (voluntary exit), due to an error or exception (like a segmentation fault), or be killed by another process (e.g., using kill commands).

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

What role do signals play in process management?

A

Signals are used by the OS to facilitate communication between processes, such as sending a termination request (e.g., using kill -9) or other management tasks.

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

What additional process management tasks are provided by the operating system?

A

Beyond termination, the OS supports adjusting scheduling priorities (via commands like nice and renice), inter-process communication (IPC), and managing process properties with system calls like getpid() and setpriority().

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