FEFreeExamDumps.in

Claude Certified Architect

Topic 10

Question 136

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: Developer Productivity Tools - In a Claude Code session you must (1) locate every file matching `**/*.config.json` and (2) find where a function named `resolveTenant` is defined. The agent tries to do both by reading directories one at a time, wasting turns. 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 definition.
  • BUse `Grep` to find files by the pattern, and `Glob` to search contents for the function.
  • CUse `Read` on every directory to do both tasks.
  • DUse `Bash` with `find` and `cat`, since no dedicated tools exist for this.