what about the initial process sequence while the system
boots up?
Answer / shilpa
While booting, special process called the 'swapper'
or 'scheduler' is created by the Process-ID 0. The swapper
manages memory allocation for processes and influences CPU
allocation. The swapper in turn creates 3 children: the
process dispatcher, vhand, etc...
Is This Answer Correct ? | 3 Yes | 1 No |
In Unix inter process communication take place using?
What are two different models of ipc differentiate both?
What is an advantage of executing a process in background?
Please explain fork() system call?
What is a Daemon?
What are various IDs associated with a process?
What is the full form of ipc?
Explain fork() system call?
What is Inode.
Explain the advantage of executing a process in background?
What are the system calls used for process management:
Predict the output of the following program code main() { fork(); printf("Hello World!"); }