Testing / Apache JMeter Interview questions
What is a Thread Group in JMeter?
A Thread Group defines a pool of virtual users for a test, configured with three core settings: the number of threads (users), the ramp-up period (how long it takes to start them all), and the loop count (how many times each thread repeats its set of requests).
Everything inside a Thread Group - samplers, controllers, timers - runs once per loop, per thread, so a Thread Group is effectively the unit that determines how much concurrent load a test actually generates.
A single Test Plan can contain multiple Thread Groups, letting a test simulate different user populations (like "browsing users" and "checkout users") with different loads and behaviors running side by side.
More Related questions...
