Question 63
CCA-F is a newly released exam. These practice questions reflect our best current understanding — the exact wording and question formats may change in the live exam until the certification matures. Use them to learn the concepts, not to memorize.
Scenario: Agent Architecture and Orchestration - A research coordinator must investigate three unrelated subtopics. It currently spawns one subagent, waits for the result, then spawns the next, tripling wall-clock latency. The three subtasks share no data and can run independently. How should the coordinator dispatch the work?
- AIssue three `Task` calls in a single coordinator turn so the subagents run in parallel.
- BMerge the three subtopics into one large Task so a single subagent handles everything sequentially.
- CKeep the sequential pattern but reduce each subagent's `max_tokens` to speed up responses.
- DSpawn one subagent and have it recursively spawn the other two to share its context.