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
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
Join The Discussion