Anthropic CCAR-F 시험 개요:
| 인증 벤더: | Anthropic |
|---|---|
| 시험명: | Claude Certified Architect – Foundations |
| 시험 번호: | CCA-F (일부 문서에서는 CCAR-F로도 표기됨) |
| 응시료: | 얼리 액세스 기간 동안 첫 5,000명의 파트너사 임직원에게는 무료, 이후 $99 USD |
| 실제 시험 문항 수: | 60 |
| 시험 시간: | 120분 |
| 자격증 유효 기간: | 합격일로부터 2년 |
| 지원 언어: | 영어 |
| 합격 점수: | 1000점 만점 중 720점 (환산 점수) |
| 시험 형식: | 시나리오 기반 문항, 객관식 단일 선택, 객관식 다중 선택 |
| 권장 교육: | Anthropic Academy 공식 교육 과정 |
| 시험 등록: | Anthropic CCA-F 액세스 요청 및 등록 Anthropic Partner Network 지원 |
| 샘플 문제: | Anthropic CCAR-F 샘플 문제 |
| 응시 방법: | ProctorFree를 통한 온라인 원격 감독 시험, 오픈북 불가, 외부 자료 사용 금지 |
| 전제 조건: | 현재 Anthropic Partner Network 소속 파트너사의 임직원으로 제한됩니다. 권장 선수 조건: Anthropic Academy의 모든 200레벨 과정 수료, Claude Agent SDK, Claude Code, Anthropic API 및 Model Context Protocol (MCP)에 대한 실무적 친숙함, 그리고 Claude 기술을 활용한 프로덕션 솔루션 구축 분야에서 최소 6개월 이상의 실무 경험. |
| 공식 요강 URL: | https://anthropic.skilljar.com/claude-certified-architect-foundations-access-request |
Anthropic CCAR-F 시험 요강 주제:
| 섹션 | 비중 | 목표 |
|---|---|---|
| 에이전트 아키텍처 및 오케스트레이션 | 27% | - 멀티 에이전트 패턴: coordinator-subagent 및 hub-and-spoke - 오류 복구, 가드레일 및 안전 패턴 - 에이전트 루프 설계 및 stop_reason 처리 - 세션 상태 관리 및 워크플로우 강제 적용 - 작업 분해 및 동적 서브 에이전트 선택 |
| Claude Code 구성 및 워크플로우 | 20% | - CI/CD 통합 및 비대화형 모드 매개변수 - CLAUDE.md 계층 구조, 우선순위 및 @import 규칙 - Hooks 대 권고 지침(advisory instructions) 비교 - 경로별 규칙 및 .claude/rules/ 구성 - 사용자 정의 슬래시 명령어 및 계획 모드 대 직접 실행 비교 |
| 도구 설계 및 MCP 통합 | 18% | - Model Context Protocol (MCP) 아키텍처 및 JSON-RPC 2.0 - 도구 스키마 설계 및 인터페이스 경계 - 도구 배포 및 권한 제어 - MCP 도구, 리소스 및 프롬프트 구현 - 오류 처리 및 도구 응답 형식 지정 |
| 프롬프트 엔지니어링 및 구조화된 출력 | 20% | - 명시적 기준 정의 및 퓨샷(few-shot) 프롬프팅 - JSON 스키마 설계 및 구조화된 출력 강제 적용 - 시스템 프롬프트 설계 및 페르소나 정렬 - 검증, 파싱 및 재시도 루프 전략 |
| 컨텍스트 관리 및 신뢰성 | 15% | - 컨텍스트 창 최적화 및 우선순위 지정 - 토큰 예산 관리 및 비용 제어 - 멱등성, 일관성 및 장애 복구력 - 컨텍스트 정리 및 요약 전략 |
최신 Claude Certified Architect CCAR-F 무료샘플문제
문제 #1
A prompt asks Claude to produce Markdown tables. Which addition MOST increases consistency?
A. Remove formatting instructions.
B. Increase randomness.
C. Specify exact column names.
D. Omit examples.
문제 #2
You are building developer productivity tools using the Claude Agent SDK. The agent helps engineers explore unfamiliar codebases, understand legacy systems, generate boilerplate code, and automate repetitive tasks. It uses the built-in tools (Read, Write, Bash, Grep, Glob) and integrates with Model Context Protocol (MCP) servers.
Your agent has spent 25 minutes exploring a game engine's rendering subsystem -reading shader code, buffer management, and frame synchronization logic. An engineer now asks it to understand how the physics engine integrates with rendering for collision debug overlays. You notice recent responses reference "typical rendering patterns" rather than the specific VulkanPipeline and FrameGraph classes it discovered earlier.
What's the most effective approach?
A. Continue in the current context with more targeted prompts referencing the specific classes by name.
B. Use /clear to reset context completely, then start fresh with physics exploration using file paths from the project's CLAUDE.md.
C. Spawn a sub-agent to explore physics independently, then manually synthesize its findings with the rendering knowledge accumulated in the main conversation.
D. Summarize key rendering findings, then spawn a sub-agent for physics exploration with that summary in its initial context.
문제 #3
You are using Claude Code to accelerate software development. Your team uses it for code generation, refactoring, debugging, and documentation. You need to integrate it into your development workflow with custom slash commands, CLAUDE.md configurations, and understand when to use plan mode vs direct execution.
A critical bug is affecting production users. Error logs show exceptions in the OrderProcessing module with a clear stack trace pointing to a specific function. You haven't worked with this module before. What's the most effective approach?
A. Use direct execution to examine the stack trace, read the relevant code, and implement a fix once you identify the root cause.
B. Start with direct execution to gather initial information, then switch to plan mode to design a comprehensive solution before implementing any changes.
C. Enter plan mode to explore the module's architecture and dependencies before attempting any fixes.
D. Use plan mode to analyze the error in context of the module's design, enumerate potential root causes, and prioritize fixes systematically.
문제 #4
In production, final reports frequently contain claims without proper source attribution.
Investigation shows that while the web search and document analysis agents correctly attach citations to their outputs, the synthesis agent loses track of which sources support which conclusions when combining findings. What's the most effective architectural change?
A. Have the coordinator inject source identifier prefixes into text before each handoff, then parse these prefixes at report generation to reconstruct citations.
B. Maintain complete transcripts of all subagent interactions and add a citation-resolution agent to analyze logs and determine attributions before report generation.
C. Add a verification step where the report generator uses semantic similarity matching against original sources to reconstruct which claims came from which documents.
D. Require all subagents to output structured claim-source mappings that the synthesis agent must preserve and merge when combining findings from multiple sources.
문제 #5
Your conversational assistant frequently generates multiple clarifying questions when users make ambiguous requests. When a user asks "Can you help me with the report?", the assistant responds: "I'd be happy to help! Could you tell me: 1) Which report? 2) What kind of help - drafting, reviewing, or formatting? 3) What's your deadline?" User analytics show a 40% conversation abandonment rate after these multi-question responses.
What's the most effective way to reduce friction while appropriately handling ambiguity?
A. Create a lookup table of common request patterns with predefined default interpretations, having the assistant respond with those defaults without stating the assumptions made.
B. Limit the assistant to one clarifying question per turn, using conversation history to accumulate answers over multiple exchanges rather than requesting everything upfront.
C. Add a preprocessing step using a smaller model to classify request ambiguity on a 1-5 scale, routing high-ambiguity requests to a clarification dialog and low-ambiguity requests directly to the assistant.
D. Modify the system prompt to instruct the assistant to make reasonable assumptions from available context, state those assumptions explicitly, and offer to adjust if the interpretation is wrong.
질문과 대답:
| 문제 #1 정답: C | 문제 #2 정답: D | 문제 #3 정답: C | 문제 #4 정답: D | 문제 #5 정답: D |














1178 개 고객 리뷰
품질과 가치ITCertKR 의 높은 정확도를 보장하는 최고품질의 덤프는 IT인증시험에 대비하여 제작된것으로서 높은 적중율을 자랑하고 있습니다.
테스트 및 승인ITCertKR 의 덤프는 모두 엘리트한 전문가들이 실제시험문제를 분석하여 답을 작성한 만큼 시험문제의 적중률은 아주 높습니다.
쉽게 시험패스ITCertKR의 테스트 엔진을 사용하여 시험을 준비한다는것은 첫 번째 시도에서 인증시험 패스성공을 의미합니다.
주문하기전 체험ITCertKR의 각 제품은 무료 데모를 제공합니다. 구입하기로 결정하기 전에 덤프샘플문제로 덤프품질과 실용성을 검증할수 있습니다.
