When using a thread pool what happens to a given thread after it finishes its task?
The thread is destroyed and memory is freed up.
The thread goes inactive in the background and waits for garbage collection.
The thread runs in loop until the next assignment.
The thread returns to the pool for reuse. Official documentation: Thread pool characteristics