Question 32
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: Code Generation with Claude Code - You need to add Slack as a new notification channel. The existing codebase has clear, established patterns for email, SMS, and push channels. However, Slack’s API offers fundamentally different integration approaches—incoming webhooks (simple, one-way), bot tokens (support delivery confirmation and programmatic control), or Slack Apps (two-way events, requires workspace approval). Your task says “add Slack support” without specifying integration method or requiring advanced features like delivery tracking. How should you approach this task?
- AStart in direct execution mode using incoming webhooks to match the existing one-way notification pattern.
- BSwitch to planning mode to explore integration options and architectural implications, then present a recommendation before implementation.
- CStart in direct execution mode by scaffolding a Slack channel class using existing patterns, deferring the integration method decision.
- DStart in direct execution mode using a bot-token approach to ensure delivery confirmation is possible.