Where did you copy this question from? Please remember that you are required to QuoteYourSources on JavaRanch whenever you copy a question from a book, mock exam or other source.
What do you mean with "from SCJP TEST"? Is this from the real, actual exam? Are you aware that you are not allowed to copy the content of the real exam?
mohitkumar gupta wrote:
think output should be c) as t.run() would call run method of Thread class
If the Thread whose run() method is called was constructed using separate Runnable object, then that Runnable object's run method is called. Otherwise, method does nothing and returns. (from Javadocs)