Rightpoint interview question

What is thread pooling and how do you make a thread safe?

Interview Answer

Anonymous

19 Mar 2024

Thread pooling is when we run our applications and then instead of creating new threads to execute the tasks, it used already existing threads to complete the tasks, This helps in memory management and processing time,