Which state does a process enter if it completes its execution loop but its parent process has not yet read its exit status value via system routines? MCQ with Answer and Explanation

Which state does a process enter if it completes its execution loop but its parent process has not yet read its exit status value via system routines?
A. Ready State
B. Zombie State
C. Orphan State
D. Blocked State
Answer: Option B
Solution (By JKExamLibrary)
A process that has finished execution but still has an entry in the process table is a 'Zombie' process, waiting for its parent to read its exit code.

This question belongs to: Computer Operating Systems

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Operating Systems Questions

Question #1 Report Error
What is the purpose of the Android 'DevicePolicyManager'?
A. To wipe device data
B. To enforce device security policies (like password, encryption) for enterprise
C. To control device settings
D. To manage app policies

Correct Answer: Option B


Explanation:
DevicePolicyManager is used for enterprise management to set policies such as password requirements, lock screen, and data wipe.

This question belongs to: Computer Operating Systems
Question #2 Report Error
Which of the following represents the correct order of the standard process lifecycle states?
A. Ready -> Terminated -> Running -> New
B. Blocked -> Ready -> Terminated -> New
C. Running -> New -> Blocked -> Terminated
D. New -> Ready -> Running -> Terminated

Correct Answer: Option D


Explanation:
A normal process lifecycle generally progresses from its creation (New), placement in queue (Ready), actual execution (Running), to completion (Terminated).

This question belongs to: Computer Operating Systems
Question #3 Report Error
In Windows, the 'System Restore' uses which service to create restore points?
A. File History
B. System Protection
C. Backup and Restore
D. Volume Shadow Copy Service (VSS)

Correct Answer: Option D


Explanation:
System Restore leverages Volume Shadow Copy (VSS) to take snapshots of system files and registry.

This question belongs to: Computer Operating Systems