InterviewSolution
Saved Bookmarks
| 1. |
Which system call is used to replace the current process image with new process image. |
|
Answer» The fork() SYSTEM call is used to create an exact copy of a running process and the created copy is the CHILD process and the running process is the PARENT process. Whereas, exec() system call is used to REPLACE a process image with a NEW process image.Explanation:plz plz plz follow me |
|