What are the process states in Unix?

Answers were Sorted based on User's Feedback



What are the process states in Unix?..

Answer / vijay

we have only
1) Running(ready to run)
2) stopped
3) suspended( sleep)
4) zombie

Is This Answer Correct ?    33 Yes 8 No

What are the process states in Unix?..

Answer / ssathishmurugan

1,user running,
2,kernel running,
3,ready to run in memory
4,ready to run in swap area
5,blocked, but process in memory
6,blocked, but process in swap area and
7,zombie

Is This Answer Correct ?    20 Yes 8 No

What are the process states in Unix?..

Answer / amit

1.running
2.stop
3. zombie

Is This Answer Correct ?    25 Yes 20 No

What are the process states in Unix?..

Answer / priyanka sial

The states of process defines the condition of the process
in the phases of execution.
Processes have different states:
1. Ready state
2. Runnung state
3. Waiting state
4. Finished state.

Is This Answer Correct ?    6 Yes 1 No

What are the process states in Unix?..

Answer / upendar

As a process executes it changes state according
to its circumstances. Unix processes have the following states:

Running : The process is either running or it is ready
to run .
Waiting : The process is waiting for an event or for a resource.
Stopped : The process has been stopped, usually by receiving a signal.
Zombie : The process is dead but have not been removed from the process table.

Is This Answer Correct ?    5 Yes 2 No

What are the process states in Unix?..

Answer / sumit

1.The running or ready to run state.
2.waiting state for any event or resource.
3.stopped by any signal or event.
4.zombie state process execution completted but information
stiil in precess table for parent process

Is This Answer Correct ?    7 Yes 5 No

What are the process states in Unix?..

Answer / julius nyerere kawemba

As a process executes it changes state according to its
circumstances. Unix processes have the following states:
1.Running : The process is either running or it is ready to
run .
2.Waiting : The process is waiting for an event or for a
resource.
3.Stopped : The process has been stopped, usually by
receiving a signal.
4.Zombie : The process is dead but have not been removed
from the process table.

Is This Answer Correct ?    1 Yes 0 No

What are the process states in Unix?..

Answer / bikram swain

And
Sleep
Suspended also....

Is This Answer Correct ?    9 Yes 9 No

What are the process states in Unix?..

Answer / anuj

1.Runnable
2.Sleeping
3.wake up
4.suspended
5.zombie
6.orphan

Is This Answer Correct ?    2 Yes 3 No

What are the process states in Unix?..

Answer / fgreregr

and also orphan

Is This Answer Correct ?    13 Yes 20 No

Post New Answer

More Unix IPC Interview Questions

Max relaxable permisssion value with out giving write permission to others?

2 Answers   IBM,


What are the various schemes available in ipc?

0 Answers  


What is i-node numbers?

0 Answers  


Which ipc is faster?

0 Answers  


What is a zombie?

10 Answers  






What are the system calls used for process management:

5 Answers  


Please explain fork() system call?

0 Answers  


What is ln(linking)?

0 Answers  


In Unix inter process communication take place using?

2 Answers  


What is IPC? What are the various schemes available?

5 Answers  


What are various IDs associated with a process?

4 Answers  


Predict the output of the following program code main() { fork(); printf("Hello World!"); }

3 Answers  


Categories