Oracle Interview Question

how to run thread 1,thread 2, thread3 one after the other

Interview Answer

Anonymous

Dec 16, 2013

t1.start(); t1.join(); t2.start(); t2.join(); t3.start(); t3.join();