When a thread is created and started, what is its initial state?

When a thread is created and started, what is its initial state?

A thread is in “Ready” state after it has been created and started.
This state signifies that the thread is ready for execution. From here, it can be in the running state.
What are the high-level thread states?
What are the high-level thread states? - The thread can be in one of the following states: Running state, Ready state, Dead state and Waiting state...
Preemptive scheduling and time slicing
Preemptive scheduling and time slicing - Under Preemptive scheduling, the task with the highest priority is executed until it enters the waiting or dead states...
What is a task's priority and how is it used in scheduling?
What is a task's priority and how is it used in scheduling? - Every task is assigned a priority for execution. The task with the highest priority is executed first...
Post your comment