What are the states associated in the thread?


Thread contains ready, running, waiting and dead states.



Explore posts in the same categories: Operating System Interview Questions


BOOKMARK THIS : del.icio.us | Digg it | Furl | reddit |


Related Questions :

  • What are the high-level thread states?
  • The high-level thread states are ready, running, waiting, and dead....
  • What are the high-level thread states?
  • The high-level thread states are ready, running, waiting, and dead....
  • How do I stop a thread?
  • There are several options. First, you can use your own communication mechanism to tell the ThreadStart method to finish. Alternatively...
  • What is difference between a thread and a process?
  • A process is a collection of virtual memory space, code, data, and system resources. A thread is code that is...
  • What is daemon thread and which method is used to create the daemon thread?
  • Daemon thread is a low priority thread which runs intermittently in the back ground doing the garbage collection operation for...
  • What is daemon thread and which method is used to create the daemon thread?
  • Daemon thread is a low priority thread which runs intermittently in the back ground doing the garbage collection operation for...
  • How can you force new objects to be created on new threads?
  • The CreateThread function creates a thread to execute within the virtual address space of the calling process. To create a thread...
  • Describe the difference between a Thread and a Process?
  • A Process is an instance of an running application. And a thread is the Execution stream of the Process. A...
  • Explain different way of using thread ?
  • The thread could be implemented by using runnable interface or by inheriting from the Thread class. The former is more...
  • When will a Thread Object be garbage collected?
  • Since Thread is also an Object, it will only garbage collected when the reference count is zero. You may think...

    Comment:

    You must be logged in to post a comment.