In GCD (Grand Central Dispatch), what is a
DispatchQueue?- aA single thread reserved exclusively for that queue's lifetime
- bAn abstraction that schedules submitted work onto a pool of threads✓
- cA compiler directive that disables concurrency checks
- dA storage container for Swift value types only
Explanation:A DispatchQueue schedules blocks of work (closures) to run on GCD's managed thread pool; it does not own one fixed thread — the system decides which thread actually executes the work.