PYQBOOK
Filter Questions
Found 475 question(s)
Q156
MCQ
GATE
CS
Easy
1 Mark
2024
OS → Process Management
Which of the following process state transitions is NOT possible?
Q157
MCQ
GATE
CS
Easy
1 Mark
2024
OS → Process Management
Which of the following process state transitions is NOT possible?
Q158
NAT
GATE
CS
Hard
2 Marks
2024
OS → Process Management
Consider the following code snippet using the fork() and wait() system calls. int x=3; while(x>0) { fork(); printf('hello'); wait(NULL); x--; }. The total number of times the printf statement is executed is
Q159
MSQ
GATE
CS
Easy
1 Mark
2024
OS → Process Management
Which one or more of the following need to be saved on a context switch from one thread (T1) of a process to another thread (T2) of the same process?
Q160
MCQ
GATE
CS
Easy
1 Mark
2024
OS → Process Management