Social Sciences, asked by priyank7979, 1 year ago

Under what circumstances does a multithreaded solution using multiple kernel threads provide better performance than a single-threaded solution on a single-processor system?

Answers

Answered by hhh24
1
A multi-thread solution is only recommend only a single core system if the processing involves wait time. so that other threads can handle other request while one thread is waiting.

for processing does not involve waiting then a single thread solution will give better performance.
Similar questions