Q. What is the idea behind thread pools? (Solved)
1. a number of threads are created at process startup and placed in a pool where they sit and wait for work
2. when a process begins, a pool of threads is chosen from the many existing and each thread is allotted equal amount of work
3. all threads in a pool distribute the task equally among themselves
4. none of the mentioned
- a. a number of threads are created at process startup and placed in a pool where they sit and wait for work