Inter-process Communication and Process Scheduling Flashcards

1
Q

Process states transitions?

A

Processes can be in states such as new, ready, running, waiting or terminated, transitions include:
- new -> ready (process admitted)
- ready -> running (scheduler dispatch)
- running -> waiting (i/o request)
- running -> ready (time splice expire)
- waiting -> ready (i/o completion)
- running -> terminated (process completion)

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

Process vs threads

A
  • Process is an independent program with its own memory space
  • Thread is a smaller unit of execution within a process that shares memory and resources with other threads in the same process
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Biggest advantage of implementing threads in user space

A

Fast context switching as it avoids kernel mode

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

Biggest disadvantage of implementing threads in user space

A

Threads in user space are not visible to the OS, leading to challenges in handling blocking system calls and scheduling

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

Threads concept utilised in practical applications?

A
  • Web servers to handle multiple client requests simultaneously
  • GUI applications for responsiveness
  • Computational tasks to parrelise work
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is meant by Critical section problem?

A

A problem of ensuring that only one process accesses a critical section of code at a time to prevent race conditions

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

Why does the thread_yield call cause a thread to voluntarily give up the CPU?

A

It allows a thread to signal the schedular that it can suspend its execution to allow other threads to run, improving system responsiveness and fairness

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

Race condition definition?

A

A race condition occurs when two or more processes access shared resources concurrently, and the result depends on the timing of their execution

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

Deadlock, why can it occur and how to prevent?

A
  • Deadlock occurs when processes are waiting on each other indefintely
  • Prevention strategies include resource ordering, deadlock detection and avoiding circular wait conditions
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Fork() and child process, how many processes or child processes are created?

A

Each fork() call creates one child process, for n fork() calls, up to 2^n processes can be created, including the parent process

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

Scheduling algorithm First Come First Served (FCFS)?

A
  • Executes processes in the order they arrive, simplest non-preemptive algorithm
  • May lead to long waiting/turn-around time
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Scheduling algorithm Shortest Job First (SJF)?

A
  • Executes processes with the shortest execution time first, non-preemptive algorithm
  • High throughput
  • Minimises average turnaround time but can starve longer processes
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the calculation for turnaround time?

A

Turnaround time = Completion time - Arrival time

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

What is the calculation for waiting time?

A

Waiting time = Turnaround time - Burst time

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

What is deadlock?

A

Processes are unable to proceed as each is waiting for the other

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

What is livelock?

A

Processes continually change state in response to each other, without making progress

17
Q

What is starvation?

A

One process is overlooked indefinitely by the schedular