Recent questions tagged process

0 votes
2 answers
5
A process executes the following segment of code: int main(){fork();fork() && fork();}The number of new processes created is
0 votes
3 answers
8
Consider the following program segment of C-programming language:#include<stdio.h int main() { if (fork() || fork()) fork(); printf("GATE\n"); return 0; } Number of times...
0 votes
1 answer
10
Why the operating system has the knowledge about kernel level threads but not about user level threads?
1 votes
1 answer
11
Does kernel level threads have separate PCB(process control block)?
0 votes
1 answer
12
0 votes
2 answers
13
For a process the termination state lies in which memory? Main or Secondary memory?
0 votes
1 answer
14
Which part of the process image forms the logical address space that is used in paging?
0 votes
0 answers
19
Give an example of a situation in which ordinary pipes are more suitable than named pipes and an example of a situation in which named pipes are more suitable than ordina...
0 votes
1 answer
22
0 votes
0 answers
23
0 votes
0 answers
27
Assume that a distributed system is susceptible to server failure. What mechanisms would be required to guarantee the “exactly once” semantic for execution of RPCs?
0 votes
0 answers
29