Practice DynamoDB Questions Now
Start a timed practice session focusing on Amazon DynamoDB topics from the DVA-C02 question bank.
Start DVA-C02 Practice Quiz →DVA-C02 DynamoDB Question Bank (20 Questions)
Browse all 20 practice questions covering Amazon DynamoDB for the DVA-C02 certification exam. Answers are intentionally hidden on this page so you can self-test first before checking results in quiz mode.
- Question 1Development with AWS Services
A developer is building a serverless API backed by Amazon DynamoDB. They need to efficiently retrieve items by a composite key. Which DynamoDB key type allows queries on both partition key and sort key?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 2Troubleshooting and Optimization
A developer finds that their DynamoDB table's 'Scan' operations are consuming excessive read capacity. What is the recommended optimization?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 3Development with AWS Services
A developer uses DynamoDB TransactWriteItems to update two tables atomically. If the transaction fails, what happens?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 4Development with AWS Services
Which DynamoDB write capacity mode automatically scales to handle unpredictable traffic spikes without provisioning?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 5Development with AWS Services
Which DynamoDB read consistency option provides the most up-to-date data but consumes more read capacity?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 6Development with AWS Services
A developer wants to use DynamoDB Streams to replicate changes to another AWS region. What is the recommended approach?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 7Development with AWS Services
A developer wants to use DynamoDB Streams to trigger downstream processing whenever an item is inserted. Which trigger mechanism is BEST?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 8Development with AWS Services
A developer wants to perform a transactional read of 2 DynamoDB items atomically. Which API should they use?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 9Development with AWS Services
A developer uses DynamoDB and needs to query items within a sort key range. Which API and expression achieves this?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 10Troubleshooting and Optimization
A developer wants to trace requests through a distributed application consisting of API Gateway, Lambda, and DynamoDB to identify performance bottlenecks. Which service provides end-to-end request tracing?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 11Development with AWS Services
A DynamoDB table uses a composite primary key. A developer wants to query all orders for a specific customer sorted by order date. Which combination of keys is correct?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 12Development with AWS Services
A developer is using the AWS SDK for Python (boto3) and receives a 'ThrottlingException' when calling DynamoDB. What is the recommended handling strategy?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 13Troubleshooting and Optimization
A DynamoDB table is experiencing hot partition issues because most reads target a single item (e.g., a popular product). What is the BEST mitigation?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 14Development with AWS Services
A developer uses DynamoDB with a GSI. They query the GSI but some recently written items are missing. What is the cause?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 15Security
A developer needs to restrict access to a DynamoDB table so that users can only read their own items. Which feature enables row-level access control?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 16Troubleshooting and Optimization
A DynamoDB table uses provisioned throughput. The developer notices UnprocessedKeys in BatchGetItem responses. What does this indicate?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 17Development with AWS Services
A developer needs to implement an API that returns data from DynamoDB. Occasionally the same data is requested thousands of times per second. What should they add to avoid DynamoDB throttling?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 18Troubleshooting and Optimization
A developer uses X-Ray and notices a high number of 'ThrottleCount' errors on DynamoDB segments. What action should they take?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 19Troubleshooting and Optimization
A developer wants to ensure their application gracefully handles DynamoDB throttling without losing writes. Which pattern is BEST?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz - Question 20Troubleshooting and Optimization
A developer uses CloudWatch and wants to create a composite alarm that only fires when BOTH a Lambda error rate AND a DynamoDB throttle alarm are active. Which CloudWatch feature enables this?
Answer hidden for practice.
Use the interactive quiz to reveal the correct answer and explanation.
Start DVA-C02 Quiz
Key DynamoDB Concepts for DVA-C02
DVA-C02 DynamoDB Exam Tips
Amazon DynamoDB questions in DVA-C02 are typically scenario-based. Focus on application development patterns, event-driven integration, and secure coding on AWS. Priority concepts: dynamodb, table, partition key, sort key, gsi, lsi.
What DVA-C02 Expects
- Anchor your answer in select developer-friendly managed services and patterns that minimize custom undifferentiated code.
- DynamoDB scenarios for DVA-C02 are frequently mapped to Domain 1 (32%), Domain 4 (18%), so read the objective carefully before picking controls or architecture.
- Expect multi-topic scenarios where DynamoDB interacts with IAM, networking, storage, or observability patterns rather than appearing as an isolated question.
- When two options are both technically valid, prefer the choice that best aligns with the exam's operational scope (Associate) and vendor best practices.
High-Value DynamoDB Concepts
- Know the core DynamoDB building blocks cold: dynamodb, table, partition key, sort key.
- Review the edge-case features and limits for gsi, lsi; these details are commonly used to differentiate answer choices.
- Practice service-integration reasoning: how DynamoDB pairs with Lambda, API Gateway, ElastiCache in real deployment patterns.
- For DVA-C02, explain why the chosen DynamoDB design meets reliability, security, and cost expectations better than the alternatives.
Common DVA-C02 Traps
- Watch for using infrastructure-centric answers instead of application-centric ones.
- Questions in Development with AWS Services often include distractors that look correct for DynamoDB but violate least-privilege, durability, or availability requirements.
- Avoid picking options purely by feature name; validate data path, failure handling, and governance impact before answering.
- If the prompt hints at automation or repeatability, eliminate manual-only operational answers first.
Fast Review Checklist
- Can you compare at least two DynamoDB implementation paths and justify which one best fits the scenario?
- Can you map the chosen answer back to Development with AWS Services (32%) outcomes for DVA-C02?
- Can you explain security and access boundaries for DynamoDB without relying on default-open assumptions?
- Can you describe how DynamoDB integrates with Lambda and API Gateway during failure, scaling, and monitoring events?