The ________ method is used to move the thread into the Ready/Runnable state.

  • join()
  • sleep()
  • start()
  • wait()
The "start()" method is used to move a thread into the Ready/Runnable state in Java. When a thread is started using "start()", it becomes eligible for execution, and the JVM schedules it for execution at the appropriate time.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *