When you create a thread instance the state will be
-
Ready
-
Runnable
-
New
-
Waiting
C
Correct answer
Explanation
When a Thread object is created using the new operator but before start() is called, the thread is in the NEW state. The thread moves to RUNNABLE state only after start() is invoked. READY and WAITING are not valid Thread state enum values in Java.