- Domain Overview: How AWS Weighs the DVA-C02 Exam
- Domain 1: Development with AWS Services (32%)
- Domain 2: Security (26%)
- Domain 3: Deployment (24%)
- Domain 4: Troubleshooting and Optimization (18%)
- Question Style, Format, and Scoring Mechanics
- Who Actually Hires for This Certification
- Mapping a Study Schedule to the Domain Weights
- Registration, Fee, and Retake Facts
- FAQ
- Domain 1 (Development with AWS Services) carries 32% of the exam - the single largest content area.
- Security is worth 26%, making Domains 1 and 2 nearly 60% of your score combined.
- The exam has 65 questions (50 scored, 15 unscored) in 130 minutes; passing requires a scaled score of 720/1000.
- Unanswered questions count as incorrect, so pacing across all four domains matters more than perfectionism on any one.
Domain Overview: How AWS Weighs the DVA-C02 Exam
The AWS Certified Developer - Associate (DVA-C02) exam is not evenly split across topics. AWS publishes exact weightings for four content areas, and those weightings tell you exactly where to spend your study hours. Understanding this breakdown is the foundation of any serious DVA-C02 Study Guide 2026: How to Pass on Your First Attempt strategy, because time spent on a low-weight domain at the expense of a high-weight one is a common reason candidates underperform.
| Domain | Weight | Core Focus |
|---|---|---|
| Domain 1: Development with AWS Services | 32% | Lambda, DynamoDB, API Gateway, SDKs/CLI, event-driven design |
| Domain 2: Security | 26% | IAM, authentication/authorization, encryption, secrets management |
| Domain 3: Deployment | 24% | CI/CD pipelines, CodeDeploy, SAM, deployment strategies |
| Domain 4: Troubleshooting and Optimization | 18% | CloudWatch, X-Ray, root-cause analysis, performance tuning |
Domain 1: Development with AWS Services (32%)
This is the largest domain on DVA-C02, and it's where AWS tests whether you can actually build applications on its platform rather than just recite service names. Expect scenario-based questions involving AWS Lambda function configuration, DynamoDB data modeling and capacity modes, API Gateway integration patterns, and the practical use of AWS SDKs and the CLI inside application code.
Development with AWS Services
Candidates must demonstrate the ability to write code that interacts with AWS services, not just describe what those services do.
- Lambda triggers, environment variables, layers, and concurrency controls
- DynamoDB primary keys, secondary indexes, and transactions
- API Gateway request/response transformation and authorizers
- Event-driven architecture using SNS, SQS, and EventBridge
- Idempotency and retry logic in distributed application code
For a deep, question-by-question breakdown of this domain's subtopics, see DVA-C02 Domain 1: Development with AWS Services (32%) - Complete Study Guide 2026. Because this domain is nearly one-third of your score, it deserves the largest single block of your preparation time.
Domain 2: Security (26%)
Security is the second-largest domain and is tightly interwoven with Domain 1 - many exam questions blend Lambda or API Gateway scenarios with IAM policy decisions. AWS expects candidates to understand least-privilege access design, resource-based versus identity-based policies, and how to secure data both at rest and in transit.
Security
This domain tests applied security judgment inside real development workflows, not abstract compliance theory.
- IAM roles, policies, and temporary credentials via STS
- Authentication with Amazon Cognito user pools and identity pools
- Secrets Manager and Systems Manager Parameter Store usage patterns
- Encryption with AWS KMS for data at rest and in transit
A candidate who treats Security as an afterthought risks losing points on questions that overlap with Development scenarios. The dedicated breakdown at DVA-C02 Domain 2: Security (26%) - Complete Study Guide 2026 walks through the exact permission models AWS tends to test.
Domain 3: Deployment (24%)
Deployment covers how code moves from a developer's machine into production AWS environments. Expect questions on CI/CD pipeline construction, AWS SAM and CloudFormation for infrastructure as code, and deployment strategies like blue/green and canary releases using CodeDeploy.
Deployment
This domain checks whether you can automate and safely release application changes.
- AWS CodePipeline, CodeBuild, and CodeDeploy integration
- AWS SAM templates and the Serverless Application Model workflow
- Deployment strategies: in-place, rolling, blue/green, canary
- Packaging and versioning Lambda functions and container images
Because Deployment sits so close to Development in weight, many candidates study them together. See DVA-C02 Domain 3: Deployment (24%) - Complete Study Guide 2026 for a full topic list mapped to the official exam guide.
Domain 4: Troubleshooting and Optimization (18%)
The smallest domain by weight, Troubleshooting and Optimization is still worth nearly one-fifth of your score. It focuses on observability tools - CloudWatch metrics, logs, and alarms, plus AWS X-Ray tracing - and on diagnosing performance bottlenecks in serverless and containerized applications.
Troubleshooting and Optimization
Candidates need to interpret monitoring data and choose the correct remediation, not just name the monitoring tool.
- CloudWatch Logs Insights queries and custom metrics
- X-Ray service maps and trace analysis for latency issues
- Lambda cold starts, memory tuning, and timeout troubleshooting
- DynamoDB throttling and capacity-related performance problems
Detailed guidance on this domain is available at DVA-C02 Domain 4: Troubleshooting and Optimization (18%) - Complete Study Guide 2026. Even at 18%, skipping this domain entirely can cost enough points to fail an otherwise strong attempt.
Question Style, Format, and Scoring Mechanics
DVA-C02 uses multiple choice and multiple response formats across 65 total questions - 50 scored and 15 unscored pretest items that AWS uses to evaluate future exam content. You will not know which questions are unscored, so every question must be treated as if it counts. The current exam guide also references emerging AI-assisted development and AI security topics, which may appear among these unscored pretest questions.
You have 130 minutes to complete the exam, which averages to roughly two minutes per question, though scenario-based items in Domain 1 and Domain 3 often take longer to read than they do to answer. Non-native English speakers can request a 30-minute time extension when the exam isn't offered in their preferred language. If you're still deciding whether this exam format suits your experience level, How Hard Is the DVA-C02 Exam? Complete Difficulty Guide 2026 breaks down the difficulty factors in more detail, and DVA-C02 Pass Rate 2026: What the Data Shows discusses what's publicly known about outcomes since AWS does not disclose official pass rates.
Who Actually Hires for This Certification
DVA-C02 is aimed at practitioners who build and maintain applications on AWS - not infrastructure architects or security specialists exclusively. Typical roles that value this credential include backend and full-stack developers working in serverless environments, cloud application engineers responsible for CI/CD pipelines, and DevOps-adjacent developers who need working knowledge of IAM and deployment automation without holding a dedicated security or architecture certification.
Because the exam's four domains map almost directly onto day-to-day developer responsibilities - writing service integrations, securing them, deploying them, and troubleshooting them - employers often treat DVA-C02 as validation of hands-on AWS development experience rather than theoretical cloud knowledge. If you're evaluating career impact, DVA-C02 Salary Guide 2026: Complete Earnings Analysis and Is the DVA-C02 Certification Worth It? Complete ROI Analysis 2026 cover the broader employment and compensation context, while DVA-C02 Jobs looks at the types of postings that specifically list this credential.
Mapping a Study Schedule to the Domain Weights
Rather than studying domains in the order AWS lists them, allocate time proportional to their weight. A schedule built around the 32/26/24/18 split ensures your effort matches what's actually being tested.
Domain 1: Development with AWS Services
- Build small Lambda functions with DynamoDB and API Gateway triggers
- Practice SDK/CLI calls for common CRUD operations
Domain 2: Security
- Write and test IAM policies for least-privilege scenarios
- Configure Cognito authentication flows and KMS-encrypted resources
Domain 3: Deployment
- Build a CI/CD pipeline with CodePipeline and CodeDeploy
- Deploy the same app using SAM and compare deployment strategies
Domain 4: Troubleshooting and Optimization + Review
- Analyze CloudWatch logs and X-Ray traces from earlier projects
- Run full-length practice exams and revisit weak domains
Key Takeaway
Spend roughly proportional time to each domain's weight, but never skip Domain 4 entirely - 18% is still enough to swing a borderline score below 720.
Registration, Fee, and Retake Facts
DVA-C02 costs $150 USD with no separate member or non-member pricing tier. The exam is delivered exclusively through Pearson VUE, either at a physical test center or via online proctoring, and there are no formal prerequisites - though AWS recommends at least one year of hands-on experience developing and maintaining AWS applications along with proficiency in a high-level programming language. Certification is valid for three years and can be renewed by passing the current Developer - Associate exam again or by earning the AWS Certified DevOps Engineer - Professional credential. Active AWS certification holders also receive benefits such as a 50% discount voucher toward future exams.
For a full cost breakdown including retake fees and preparation expenses, see DVA-C02 Certification Cost 2026: Complete Pricing Breakdown. If you're still new to what this credential actually represents, background articles like What Is DVA-C02?, DVA-C02 Meaning, and What Is DVA-C02 Certification? cover the fundamentals, while DVA-C02 Training outlines structured learning paths beyond self-study.
Before exam day, it's worth running through realistic practice questions on our DVA-C02 practice test platform so you experience the actual question style and timing pressure before you sit the real exam. Consistent practice against domain-weighted question sets on the practice test site is one of the most reliable ways to confirm you're ready across all four content areas, not just your strongest one.
FAQ
Start with Domain 1: Development with AWS Services, since it carries 32% of the exam and its concepts (Lambda, DynamoDB, API Gateway) reappear inside Security and Deployment questions.
No. At 18% of 50 scored questions, Troubleshooting and Optimization can still represent close to a dozen questions - enough to affect whether you reach the 720 passing score.
No, the 15 pretest questions are unscored and used by AWS to evaluate future content, but since they're not identified during the exam, you should answer every question as if it counts.
AWS doesn't publish an exact per-domain question count, but the published weightings (32%, 26%, 24%, 18%) applied to the 50 scored questions give a reasonable estimate of each domain's share.
Yes, but remember that any question left unanswered at the end counts as incorrect, so make sure to submit an answer for every item before time expires.