Subdomain 1.1: Agent Architecture
1.A team wants higher-confidence answers from a fraud-detection prompt applied to a transaction description. Rather than reviewing different angles, they run the exact same prompt against the same transaction five times and keep whichever verdict -- fraudulent or legitimate -- appears most often across the five runs. Which pattern are they using?
- A.Parallelization by sectioning, where five different prompts each examine a distinct aspect of the same transaction independently.
- B.Parallelization by voting, where the identical task runs multiple times to produce diverse outputs and the most common result is selected.
- C.Evaluator-optimizer, where a second LLM call critiques the first verdict and the prompt is revised until the criteria are satisfied.
- D.Prompt chaining, where each of the five runs consumes the verdict produced by the run immediately before it.
Show answer & explanation
Correct answer: B — Parallelization by voting, where the identical task runs multiple times to produce diverse outputs and the most common result is selected.
- A. Incorrect -- sectioning uses different prompts each covering a distinct aspect; here it is the same prompt run repeatedly on the same question, not five distinct aspects.
- B. Correct -- voting runs the identical task multiple times to get diverse outputs and keeps the majority result, exactly matching five identical runs with a majority verdict.
- C. Incorrect -- there is no critique step or revision loop between runs described; each run is independent and identical, not iteratively refined by a second LLM.
- D. Incorrect -- the five runs are independent and simultaneous, not sequential, so no run consumes the output of a prior run as chaining would require.