Practice Free CCA-F Exam Online Questions
While working in Claude Code, you press Shift + Tab to enter Plan Mode.
Which subagent is typically associated with isolating the verbose discovery phase to prevent context window exhaustion during planning?
- A . The Review subagent
- B . The Write subagent
- C . The Explore subagent
- D . The Plan-Executor subagent
An agent executing a workflow at quicktechie.com needs to inspect the contents of a config. json file to understand current project settings.
Which approach represents an architectural anti-pattern?
- A . Using the Read tool to parse the JSON contents directly into context.
- B . Invoking config.json") to output the file to the terminal.
- C . Using the Glob tool to verify the file’s path exists before attempting to read it.
- D . Passing the file path directly to an approved MCP resource for validation.
When implementing structured data extraction for a application, what does utilizing tool_use with a strict JSON schema explicitly guarantee?
- A . Both structural compliance and semantic correctness of the extracted data.
- B . Structural compliance, ensuring valid JSON syntax and required fields, but not semantic accuracy.
- C . Elimination of all hallucinations and inaccurate data extraction.
- D . Automatic retry loops if the extracted values fail business logic validation.
How should Claude Code be executed in a Continuous Integration (Cl) pipeline to analyze pull requests without hanging indefinitely?

- A . Option A
- B . Option B
- C . Option C
- D . Option D
A engineer is creating a reusable custom Skill in. claude/skills/refactor/SKILL.md. The skill requires an isolated context window to avoid polluting the main session with exploration noise, and must be restricted to only reading files (no modifications).
Which frontmatter configurations are required? Choose 2 correct answers.
- A . isolation: true
- B . context: fork
- C . allowed-tools: Read, Grep, Glob
- D . permissions: read-only
When using Claude Code for test generation and feature implementation, what is the recommended Test-Driven Development (TDD) iterative refinement pattern?
- A . Write implementation write tests -> prompt Claude to ‘make it better’ -> refactor.
- B . Write a failing test -> implement code to pass the test -> run tests -> refine implementation while keeping tests green.
- C . Use Plan Mode to write all tests simultaneously, then execute them in a single batch.
- D . Run the /test slash command to automatically infer and generate missing unit tests for the entire project.
