Question 86
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: Tool Design and MCP Integration - In a Claude Code session you need to find every file matching `**/*.test.ts`, then locate the definition of a function named `calculateTax` inside the codebase. Which built-in tools fit these two tasks?
- AUse `Glob` to find files by the name pattern, and `Grep` to search file contents for the function.
- BUse `Grep` to find files by pattern, and `Glob` to search contents.
- CUse `Read` on every file to do both.
- DUse `Bash` with `find` and `cat` since no dedicated tools exist.