1. Exam Overview
The AWS Certified Developer – Associate (DVA-C02) exam validates the ability to develop, secure, deploy, troubleshoot, and optimize AWS Cloud applications. It is a developer-focused exam: scenarios usually ask for the best application-level implementation choice, not a full enterprise architecture redesign.
Exam format
| Item | Current exam format |
|---|---|
| Exam code | DVA-C02 |
| Duration | 130 minutes |
| Total questions | 65 |
| Scored questions | 50 |
| Unscored questions | 15 |
| Question styles | Multiple choice and multiple response |
| Passing scaled score | 720 out of 1,000 |
What the exam rewards
The exam favors solutions that are:
- Managed: use an AWS feature instead of unnecessary custom code.
- Loosely coupled: avoid synchronous dependencies when asynchronous processing fits.
- Least privilege: grant only the actions and resources required.
- Observable: use metrics, structured logs, traces, alarms, and health checks.
- Repeatable: deploy immutable artifacts and infrastructure as code.
- Resilient: design for retries, duplicate messages, partial failures, and rollback.
- Access-pattern driven: choose a data store and index design from the query pattern.
How to read exam scenarios
Before comparing answers, identify four things:
- Primary requirement: security, latency, ordering, durability, isolation, deployment safety, or troubleshooting?
- Scope: application code, AWS service configuration, IAM permissions, data store design, or release pipeline?
- Constraint words: MOST secure, least operational overhead, near real time, ordered, temporary, without changing code, before invoking the backend.
- Failure model: transient error, poison message, duplicate delivery, hot partition, missing permission, bad deployment, or downstream outage?
A correct answer usually solves the main requirement directly with the smallest appropriate AWS-native mechanism.