Correct Answer: (b) A ‐ IV , B ‐ III , C ‐ I , D ‐ II
Solution:Fork () : Fork system call is used for creating a new process, which is called child process, which runs currently with the process that makes the fork() call (pavement process.)
exec() : The exec() family of functions replaces the current process image with a new process image. It loads the program into the current process space and runs it from the entry point. Kill() : kill is a command that is used in several, popular operating systems to send signals to running process.
Exit() : exit() terminates the calling process "immediately"