If I have two threads started off like ...
t1.start();
t2.start();
does this mean that both of them start off simultaneously one after the other at the same time?
and if the
thread t2 is a timer of the thread t1, then does the timer thread gives the time taken for thread t1 to run( assuming the code for timer is working fine)?
PLease let me know
Sapna