Multiple choice technology programming languages Difference between fork() & vfork() vforlk() allows more one child process to be created simaltaneously whereas for() allows only one vfork() retains same PID for child & parent known as virtual PID vfork() suspends the parent process until child process exits fork() & vfork() are same Reveal answer Fill a bubble to check yourself C Correct answer Explanation Unlike fork(), which allows both parent and child processes to run concurrently, vfork() suspends the parent process until the child process either calls execve() or exits, preventing race conditions on shared memory.