Problem: 1.Create four threads.
2. Thread 1 should display - "Hi im thread 1" and go to sleep for 1 second. This should loop 100times.
3. After 100 times of looping, thread 2 should display,sleep and loop.
4. All four threads must do the same.
Solutionn : I have tried writing a program and im...