If an operating system does not allow a child process to exist when the parent…

2022

If an operating system does not allow a child process to exist when the parent process has been terminated, this phenomenon is called as.

  1. A.

    Threading

  2. B.

    Cascading termination

  3. C.

    Zombie termination

  4. D.

    Process killing

Attempted by 349 students.

Show answer & explanation

Correct answer: B

Answer: Cascading termination

Explanation: Cascading termination means that when a parent process is terminated, the operating system also terminates its child processes, so termination cascades down the process tree.

  • Key point: The child processes do not continue running independently; they are automatically stopped when the parent ends.

  • Contrast with a zombie process: A zombie is a child that has finished but remains in the process table because the parent has not yet collected its exit status.

  • Contrast with threading: Threading involves multiple threads inside the same process and is unrelated to parent-child process termination behavior.

  • Contrast with process killing: Process killing is a general action of terminating a process and does not specifically describe automatic termination of child processes when the parent dies.

A video solution is available for this question — log in and enroll to watch it.

Explore the full course: Mppsc Assistant Professor