Last reviewed
Correct answer: C. Resuming that subagent by its agent ID and continuing the conversation with the context it built preserved.
Explanation
The principle — Each subagent execution returns an agent ID, and background subagents write their state to disk as they go. A finished subagent is a conversation you can pick up again, rather than a call that has already returned.
Why the key is correct — Passing that ID back resumes the subagent with its context intact, so the follow-up lands on an agent that already knows the paths, the dead ends and the findings.
Why the others are wrong — Starting fresh is possible but wasteful, since completion does not discard the state. Re-issuing the original prompt reproduces neither the exploration nor the saving. And the state is persisted rather than held in memory, so the returned summary is far from all that survives.
Remember this — Keep the agent ID; a completed subagent resumes with its context.
Sources — Cursor's Subagents documentation.
Sources
“Background subagents write their state as they run. You can resume a subagent after it completes to continue the conversation with preserved context.”
Practise 10 questions on this topic
Take Cursor AI Features — Timed Test 1 (10 questions) — scored instantly, explanation for every question, no login.