Vidyalelo
Java Programming · Q7

Threads

Programming · Java Programming · question 7

Q7

What is the result of calling the run() method directly instead of start() in Java threads?

A.
The run() method is executed in the current thread, not as a separate thread
Answer
B.
It starts a new thread and executes the run() method
C.
It stops the thread immediately
D.
It suspends the thread

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board