Recent questions tagged process

0 votes
1 answer
61
0 votes
1 answer
62
Multi-threaded application cannot take advantage of multiprocessing.What does this mean?
9 votes
2 answers
65
if(fork() && fork()) {fork();}if(fork()||fork()) {fork();fork();}printf("XYZ");How many time XYZ gets printed ?
11 votes
4 answers
66
int main() { if(fork() == 0) printf("GATE2018"); if(fork() == 0) printf("GATE2018"); }How many times GATE2018 printed?
0 votes
1 answer
67
1.Can any one tell me few examples of "new" and "ready" process?2.What kind of process "a.out" is? Is it a new process or just a program on secondary memory?
10 votes
3 answers
68
can anyone tell what are different activities that are performed in kernel modeuser modehow to change frm user mode to kernel mode and vice-versa,,
1 votes
1 answer
70
Which of the following information is not a part of process control block?a) CPU scheduling informationb) CPU-stack pointer valuesc) CPU-timer informationd) CPU- accumula...
2 votes
0 answers
73
a process has 3 sections stack heap and text and if the size of the page table is 2 mb then on average amount of unused page space per process is?
3 votes
3 answers
74
Which of the following is/are an invalid process state transitiona) timer start: ready runningb) timer out : running blockedc) I/O : running readyd) resume: suspe...
3 votes
2 answers
76
3 votes
7 answers
77
There are three processes in the ready queue. When the currently running process requests for I/O how many process switches take place?1234
3 votes
3 answers
78
Process isA program in high level language kept on diskContents of main memoryA program in executionA job in secondary memory
8 votes
2 answers
79
Which of the following need not necessarily be saved on a Context Switch between processes?General purpose registersTranslation look-aside bufferProgram counterStack poin...
6 votes
2 answers
80
A task in a blocked stateis executableis runningmust still be placed in the run queuesis waiting for some temporarily unavailable resources
4 votes
1 answer
81
3 votes
1 answer
82
Special software to create a job queue is called aDriverSpoolerInterpreterLinkage editor
2 votes
5 answers
84
The state of a process after it encounters an $I/O$ instruction is?ReadyBlockedIdle Running
26 votes
1 answer
88
59 votes
4 answers
90
Which of the following does not interrupt a running process?A deviceTimerScheduler processPower failure