Multiple choice technology programming languages

When you create a thread instance the state will be

  1. Ready

  2. Runnable

  3. New

  4. Waiting

Reveal answer Fill a bubble to check yourself
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.