System Administrator 2026
Thread pools are useful when ____________
- A. When we need to limit the number of threads running in the application at the same time
- B. When we need to limit the number of threads running in the application as a whole
- C. When we need to arrange the ordering of threads
- D. None of the mentioned
What is the idea behind thread pools?
- A. A number of threads are created at process startup and placed in a pool where they sit and wait for work
- B. When a process begins, a pool of threads is chosen from the many existing and each thread is allotted equal amount of work
- C. All threads in a pool distribute the task equally among themselves
- D. None of the mentioned
Thread pools help in ____________
- A. Servicing multiple requests using one thread
- B. Servicing a single request using multiple threads from the pool
- C. Faster servicing of requests with an existing thread rather than waiting to create a new thread
- D. None of the mentioned