Process management Flashcards

1
Q

What is a process in an operating system?

A

A process is a program in execution, consisting of program code, data, and system resources.

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

What are the different states of a process?

A

New, Ready, Running, Waiting, Terminated.

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

What is the difference between a process and a thread?

A

A process is an independent execution unit with its own memory, whereas a thread is a lightweight execution unit sharing memory within a process.

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

What is process creation?

A

It is the initiation of a new process using system calls like fork(), exec(), or CreateProcess().

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

Which system calls are used for process creation in UNIX?

A

fork(), exec(), wait(), exit().

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

What does the fork() system call do?

A

It creates a new child process by duplicating the parent process.

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

What is the difference between fork() and exec()?

A

fork() creates a new process, while exec() replaces the current process image with a new one.

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

What happens if fork() is called multiple times?

A

Multiple child processes are created, leading to exponential growth in processes.

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

What is the return value of fork()?

A

0 for the child process, child’s PID for the parent process, and -1 if the fork fails.

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

What is the use of the wait() system call?

A

It makes a parent process wait until its child process terminates.

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

What is the difference between wait() and waitpid()?

A

wait() waits for any child process, while waitpid() can wait for a specific child.

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

What is an orphan process?

A

A child process whose parent has terminated.

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

What is an init process?

A

The first process in UNIX/Linux (PID 1) that adopts orphan processes.

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

What is a zombie process?

A

A process that has completed execution but still has an entry in the process table.

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

How do you prevent a zombie process?

A

By calling wait() or waitpid() in the parent process.

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

What is the difference between a zombie and an orphan process?

A

A zombie has terminated but is still in the process table; an orphan is running without a parent.

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

What is the exec() system call?

A

It replaces the current process image with a new one.

18
Q

What are the variants of exec() in UNIX?

A

execl(), execle(), execlp(), execv(), execve(), execvp().

19
Q

What happens to process ID (PID) after exec()?

A

It remains the same as exec() does not create a new process.

20
Q

What is inter-process communication (IPC)?

A

It is a mechanism for processes to communicate, using pipes, message queues, shared memory, etc.

21
Q

What is the difference between IPC using pipes and shared memory?

A

Pipes provide unidirectional or bidirectional communication, whereas shared memory allows direct access to data.

22
Q

What is the parent-child relationship in processes?

A

A parent creates a child process using fork(), and both share some resources.

23
Q

What is a daemon process?

A

A background process that runs without user interaction.

24
Q

How do you create a daemon process?

A

By detaching it from the terminal using fork(), setsid(), and changing the working directory.

25
Q

What is the difference between user mode and kernel mode?

A

User mode runs application code with limited privileges, while kernel mode has full system access.

26
Q

What is context switching?

A

The process of saving and restoring the state of a CPU when switching between processes.

27
Q

What is a Process Control Block (PCB)?

A

A data structure that stores process information like PID, state, registers, and scheduling information.

28
Q

What is a process table?

A

A system structure that maintains information about active processes.

29
Q

What is process scheduling?

A

The method by which the OS decides which process to execute next.

30
Q

What are the different types of schedulers?

A

Long-term, short-term, and medium-term schedulers.

31
Q

What is the difference between preemptive and non-preemptive scheduling?

A

Preemptive scheduling allows the OS to interrupt and switch processes, whereas non-preemptive does not.

32
Q

What is a time slice in scheduling?

A

The fixed time a process gets to run before being preempted.

33
Q

What is a system call?

A

A request from a user program to the OS for a service, such as process creation.

34
Q

What are some examples of system calls related to processes?

A

fork(), exec(), wait(), exit(), getpid().

35
Q

What is the difference between exit() and _exit()?

A

exit() performs cleanup before terminating, while _exit() terminates immediately.

36
Q

What is signal handling in process management?

A

A mechanism to send and handle signals for process control (e.g., SIGKILL, SIGSTOP).

37
Q

What happens when SIGKILL is sent to a process?

A

It terminates the process immediately without cleanup.

38
Q

What is the difference between SIGTERM and SIGKILL?

A

SIGTERM allows cleanup before termination, SIGKILL does not.

39
Q

What is the role of the process scheduler?

A

It manages process execution, deciding which process runs next.

40
Q

What is the purpose of nice values in scheduling?

A

They determine process priority, with lower values having higher priority.

41
Q

What is the difference between a foreground and background process?

A

A foreground process runs interactively, while a background process runs without user intervention.