πŸ“Š Linux
Q. Which of the following values for the STAT column of the “ps” command is not true?
  • (A) Status R means Running
  • (B) Status S means Sleeping
  • (C) Status E means Exited
  • (D) Status Z means Zombie
πŸ’¬ Discuss
βœ… Correct Answer: (C) Status E means Exited

Explanation: The process states indicated by “ps” command are:
D : uninterrupted sleep (usually an I/O)
R : running or executable (in the execution queue)
S : interruptible sleep (waiting for an event to be completed)
T : stopped, either by a control signal from the Job
W : paging
X : dead (should never be seen)
Z : (“zombie”) process, ended without the parent process being aware of it

Explanation by: Mr. Dubey
The process states indicated by “ps” command are:
D : uninterrupted sleep (usually an I/O)
R : running or executable (in the execution queue)
S : interruptible sleep (waiting for an event to be completed)
T : stopped, either by a control signal from the Job
W : paging
X : dead (should never be seen)
Z : (“zombie”) process, ended without the parent process being aware of it

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
165
Total Visits
πŸ“½οΈ
3 y ago
Published
πŸŽ–οΈ
Mr. Dubey
Publisher
πŸ“ˆ
92%
Success Rate