Say we have three threads T1, T2 and T3 which
perform sequentially one after another is their any benefit
of using thread over here rather than having a single
process.
Answer Posted / vinod
What if T1 waits for some resource -- Let it be some Input
from keyboard. When T1 is in the wait state, T2 and T3 can
be completed hence utilizing the waiting time. If it was a
single process instead of 3 threads, then the code
equivalent of T2 and T3 will have to wait till code
equivalent of T1 is completed which is definitely a waste of
time.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Do threads share heap?
Why do we use threads?
how will you distinguish if it is a process or a thread, provided you know pid in linux operating system?
Can threading stop hair growth?
Are cpu threads important?
What are threads and processes?
Do threads share page table?
Does linux have threads?
How many threads can you run?
Why are goroutines not lightweight threads?
What is context switching between threads?
How many threads does a core i7 have?
Does threading damage the skin?
What are linux kernel threads?
Are goroutines thread safe?