run() method is called directly instead of calling start() method - Core Java
Q. What will happen if we call the run() method directly instead of calling the start() method?- Published on 16 Jul 15a. Each thread starts in a separate call stack.
b. Invoking the run() method from main thread, the run() method goes onto the current call stack rather than at the beginning of a new call stack.
c. Both A & B
d. None of the above
ANSWER: Both A & B