Multiple Choice
Insert the statement that would start the following thread.
Thread firstThread = new Thread(myRunnable) ;
____________________
A) firstThread.run() ;
B) firstThread.start() ;
C) run() ;
D) start() ;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q40: Calling the wait method in synchronized code
Q41: What happens if we try to start
Q42: When a sleeping thread is interrupted, an
Q43: In order to unblock a thread after
Q44: When a thread is interrupted, the most
Q46: Assume two threads share a BankAccount object
Q47: Consider an old fashioned telephone booth that
Q48: What should be done to get the
Q49: Class MyClass has two ReentrantLock objects, myLock1
Q50: Which argument(s) present(s) the best case(s) for