InterviewSolution
| 1. |
Explain Thread Group. Why should we not use it? |
|
Answer» ThreadGroup is a class that is used to create multiple groups of THREADS in a single object. This group of threads is present in the form of three structures in which every THREAD group has a parent except the initial thread. Thread groups can contain other thread groups also. A thread is only allowed to have ACCESS to information about its own thread group, not other thread groups. |
|