Question
A runtime keeps a fixed set of worker threads and assigns submitted tasks to available workers. What technique is this?
Select an option. Your answer will be checked instantly.
Correct Answer: A. Thread pool
Explanation:
A thread pool reuses worker threads instead of creating a new thread for every task.
This limits creation overhead and can control the maximum level of concurrency.
Leave a Reply