Java Threads Question:

What is thread? What are the high-level thread states?
Or
What are the states associated in the thread?

Java Threads Interview Question
Java Threads Interview Question

Answer:

A thread is an independent path of execution in a system. The high-level thread states are ready, running, waiting and dead.


Previous QuestionNext Question
What is the purpose of the wait(), notify(), and notifyAll() methods?What is deadlock?