nerdexam
Cisco

210-250 · Question #148

A child process that's permitted to continue on its own after its parent process is terminated. What is that child process called?

The correct answer is C. Orphan. An orphan process is a child process that continues running independently after its parent process has been terminated. This is a fundamental operating system process management concept.

Cybersecurity Fundamentals

Question

A child process that's permitted to continue on its own after its parent process is terminated. What is that child process called?

Options

  • ALeaf.
  • BChild tab.
  • COrphan
  • DZombie.

How the community answered

(56 responses)
  • A
    2% (1)
  • B
    5% (3)
  • C
    89% (50)
  • D
    4% (2)

Why each option

An orphan process is a child process that continues running independently after its parent process has been terminated. This is a fundamental operating system process management concept.

ALeaf.

A leaf node in a process tree refers to a process with no children of its own, not one whose parent has terminated.

BChild tab.

Child tab is not a recognized operating system or process management term.

COrphanCorrect

When a parent process terminates before its child, the child becomes an orphan process. On Unix-like systems, orphans are typically re-parented to the init process (PID 1) so they can be properly managed and eventually reaped when they finish execution.

DZombie.

A zombie process is one that has finished execution but still has an entry in the process table because its parent has not yet read its exit status via wait().

Concept tested: Orphan vs. zombie process lifecycle management

Source: https://www.gnu.org/software/libc/manual/html_node/Processes.html

Topics

#orphan process#process management#operating system#Linux

Community Discussion

No community discussion yet for this question.

Full 210-250 Practice