In my opinion the output of this program can only be
Hello 0 1 2 3 4 Yes
But the answer lists
0 1 2 3 4 Hello Yes
as a possible answer as well. My question is when the test is put to sleep, shouldnt main being the only other thread move to running state, this way Hello should always be printed first?
public class Lean
{
public static void main(String args[]) throws Exception
{
Test test = new Test();
test.start();
System.out.print("Hello ");
test.join();
System.out.print("Yes");
}
}
class Test extends Thread
{
public void run()
{
try
{
Thread.sleep(2000);
} catch (InterruptedException e)
{}
for (int counter=0; counter<5 ; counter++)
{
System.out.print(counter + " ");
}
}
}