Amazon Web ServicesAssociate levelDVA-C02

DVA-C02 exam dumps: 399 free AWS Developer Associate practice questions

Free DVA-C02 practice questions for the AWS Certified Developer - Associate exam, with the correct answer and a full explanation for every option. Read the first 10 below, browse all 399 by number, or take a timed practice exam.

Question bank last updated December 2024

Free DVA-C02 practice questions

Questions 1 to 10 of 399

Pick an answer before you open the explanation. Each question also has its own page with a permalink.

DVA-C02 Question 1

Select 3

You are developing a serverless web application on AWS that allows users to upload images. The application requires the following:

  1. The uploaded images should be stored securely.
  2. The application should trigger image processing as soon as an image is uploaded.
  3. Processed images should be stored in another location for retrieval.

Which combination of AWS services and features should you use to meet these requirements?

  1. A

    Amazon S3 with S3 Event Notifications to trigger an AWS Lambda function for image processing

  2. B

    Amazon DynamoDB to store the uploaded images and use DynamoDB Streams to trigger image processing

  3. C

    AWS Lambda to process the uploaded images and store the processed images in another S3 bucket

  4. D

    Amazon SQS to handle image processing requests and Amazon RDS to store the images

  5. E

    Amazon S3 with versioning enabled for secure storage of both uploaded and processed images

Show answer and explanation

Correct answers: A, C, E

Explanation

To meet the requirements, Amazon S3 is used to securely store uploaded images. S3 Event Notifications can automatically trigger an AWS Lambda function for image processing. The Lambda function processes the image and stores the processed version in another S3 bucket. Enabling S3 versioning ensures secure storage and prevents accidental overwrites or deletions. This combination of services ensures a serverless, scalable, and secure architecture.

  • A. Correct.

    Amazon S3 with S3 Event Notifications allows you to trigger an AWS Lambda function when an object is uploaded to a bucket, which is suitable for this use case.

  • B. Incorrect.

    Amazon DynamoDB is not suitable for storing images because it is a NoSQL database designed for structured data, not binary files such as images.

  • C. Correct.

    AWS Lambda can be used to process the images (e.g., resizing or applying filters) and store the processed images in another S3 bucket.

  • D. Incorrect.

    Amazon SQS and Amazon RDS are not ideal for this use case. SQS is primarily for decoupling components, and RDS is a relational database, not designed to store images.

  • E. Correct.

    Amazon S3 with versioning enabled enhances the security and durability of stored images by keeping multiple versions of objects, ensuring data is not lost.

DVA-C02 Question 2

Single answer

You are developing a serverless application that processes images uploaded to an S3 bucket. When a new image is uploaded, metadata about the image needs to be stored in a DynamoDB table. The solution should scale automatically and ensure that no images are missed. Which of the following is the most appropriate architecture for this requirement?

  1. A

    Set up an Amazon S3 event notification to trigger an AWS Lambda function that processes the image metadata and stores it in DynamoDB.

  2. B

    Use Amazon S3 Transfer Acceleration to send image metadata directly to DynamoDB.

  3. C

    Set up an Amazon S3 event notification to send the image metadata to an Amazon SQS queue, and then create an EC2 instance to process the metadata and store it in DynamoDB.

  4. D

    Create a CloudWatch Events rule to monitor the S3 bucket for new image uploads and trigger a Lambda function to process and store the metadata in DynamoDB.

Show answer and explanation

Correct answer: A

Explanation

The most appropriate solution leverages S3 event notifications to directly trigger an AWS Lambda function. This architecture is serverless, scalable, and simplifies the processing of image metadata. Lambda integrates seamlessly with both S3 and DynamoDB, making it the ideal choice for this requirement.

  • A. Correct.

    This is the correct option. S3 event notifications can directly trigger a Lambda function, which is well-suited for serverless event-driven architectures. The Lambda function can process the image metadata and store it in DynamoDB, ensuring scalability and reliability.

  • B. Incorrect.

    This is incorrect. Amazon S3 Transfer Acceleration is used to accelerate data transfers to S3, not to process or transfer metadata to DynamoDB.

  • C. Incorrect.

    This is incorrect. While SQS could be used as an intermediary, setting up an EC2 instance to process the metadata is not a cost-effective or scalable solution compared to a serverless approach using Lambda.

  • D. Incorrect.

    This is incorrect. CloudWatch Events is not designed to monitor S3 bucket events for object uploads. S3 event notifications are the correct mechanism for this use case.

DVA-C02 Question 3

Single answer

You are developing a serverless web application using AWS Lambda, Amazon API Gateway, and Amazon DynamoDB. The application requires secure, temporary access to write data to the DynamoDB table from the Lambda function. How should you configure this access?

  1. A

    Attach an inline policy with write permissions to the Lambda function's execution role.

  2. B

    Hardcode AWS credentials as environment variables in the Lambda function.

  3. C

    Create an IAM user with write permissions to DynamoDB and use its access keys in the Lambda function.

  4. D

    Grant write permissions to the DynamoDB table for all users in the account.

Show answer and explanation

Correct answer: A

Explanation

The best practice for granting access to AWS services, such as DynamoDB, from a Lambda function is to use the Lambda function's execution role. You can attach an inline policy to the execution role with the necessary permissions, such as the write permissions required in this scenario. This approach ensures that temporary credentials are securely and automatically provided to the Lambda function, adhering to the principle of least privilege.

  • A. Correct.

    Correct. Attaching an inline policy with write permissions to the Lambda function's execution role ensures secure, temporary access to the DynamoDB table. This is the recommended practice for assigning permissions in AWS serverless architectures.

  • B. Incorrect.

    Incorrect. Hardcoding AWS credentials in the Lambda function's environment variables is a security risk and violates best practices. AWS credentials should never be hardcoded.

  • C. Incorrect.

    Incorrect. Creating an IAM user and using its access keys in the Lambda function is not a secure or scalable solution, and it doesn't leverage temporary credentials provided by the execution role.

  • D. Incorrect.

    Incorrect. Granting write permissions to all users in the account creates a security vulnerability by over-provisioning access to the DynamoDB table.

DVA-C02 Question 4

Single answer

You are developing a serverless application using AWS Lambda, and you need to securely retrieve database credentials stored in AWS Secrets Manager. The Lambda function should only have access to the specific secret it needs. How can you configure this setup?

  1. A

    Attach an IAM policy to the Lambda function's execution role, allowing it to retrieve any secret in AWS Secrets Manager.

  2. B

    Create an IAM policy that grants access only to the specific secret ARN in Secrets Manager and attach it to the Lambda function's execution role.

  3. C

    Embed the database credentials directly into the Lambda function code for quick access.

  4. D

    Use environment variables to store the database credentials in plaintext and reference them in the Lambda function code.

Show answer and explanation

Correct answer: B

Explanation

The best practice for securely accessing secrets in AWS is to use AWS Secrets Manager with fine-grained IAM permissions. By creating an IAM policy that grants access only to the specific secret ARN and attaching it to the Lambda function's execution role, you ensure that the Lambda function has the necessary access while adhering to the principle of least privilege. This reduces the risk of unauthorized access to sensitive credentials.

  • A. Incorrect.

    Granting access to all secrets in Secrets Manager is overly permissive and violates the principle of least privilege. This option is not secure.

  • B. Correct.

    This approach follows the principle of least privilege by granting access only to the specific secret ARN that the Lambda function needs. It is the best practice for securing sensitive information.

  • C. Incorrect.

    Embedding database credentials directly into the Lambda function code is not a secure practice. If the code is compromised, the credentials could be exposed.

  • D. Incorrect.

    Storing database credentials in plaintext as environment variables is a security risk, as they can be easily accessed if the environment variables are exposed.

DVA-C02 Question 5

Single answer

You are developing a serverless application using AWS Lambda. Your function processes images uploaded to an S3 bucket and stores metadata in an Amazon DynamoDB table. After deployment, you notice that some images are not processed and the Lambda function logs show throttling errors when writing to DynamoDB. What is the best way to address this issue?

  1. A

    Increase the write capacity of the DynamoDB table to handle the higher throughput.

  2. B

    Enable DynamoDB Auto Scaling to dynamically adjust the table's write capacity.

  3. C

    Configure the Lambda function to retry failed writes to DynamoDB using an exponential backoff strategy.

  4. D

    Use the S3 Event Notification feature to ensure that each image triggers exactly one Lambda invocation.

Show answer and explanation

Correct answer: B

Explanation

The issue here is caused by insufficient write capacity in the DynamoDB table, leading to throttling errors. Enabling DynamoDB Auto Scaling allows the table to automatically scale its capacity to match the workload, avoiding these errors while maintaining cost efficiency. Other options either address symptoms of the issue or do not resolve the core problem of write capacity limits.

  • A. Incorrect.

    Increasing the write capacity manually can work, but it's not ideal as it doesn't adjust dynamically with fluctuating workloads. This approach may lead to over-provisioning or under-provisioning of capacity.

  • B. Correct.

    Enabling DynamoDB Auto Scaling is the best option as it allows the table to automatically adjust its read and write capacity in response to changing traffic patterns, preventing throttling errors.

  • C. Incorrect.

    Configuring retries with exponential backoff can reduce the impact of throttling errors, but it doesn't address the root cause, which is insufficient write capacity in DynamoDB.

  • D. Incorrect.

    Using the S3 Event Notification feature ensures that each image triggers a Lambda invocation, but it does not solve the DynamoDB throttling issue.

DVA-C02 Question 6

Select 2

You are developing a serverless application using AWS Lambda. Your application processes images and stores the output in an Amazon S3 bucket. Recently, you noticed that the image processing times have increased significantly during periods of high traffic. You want to optimize the application while keeping costs low. What should you do?

  1. A

    Increase the memory allocated to the Lambda function since it also increases the available CPU power.

  2. B

    Enable AWS X-Ray to analyze the performance bottlenecks in your Lambda function.

  3. C

    Configure reserved concurrency for your Lambda function to handle more simultaneous executions.

  4. D

    Implement an Amazon SQS queue to decouple the image upload process from the image processing Lambda function.

  5. E

    Use Provisioned Concurrency for the Lambda function to reduce cold start latency during high traffic.

Show answer and explanation

Correct answers: A, D

Explanation

To optimize the Lambda function for high traffic, you should consider increasing its memory allocation to improve processing performance and implement an Amazon SQS queue to buffer and decouple incoming requests. These approaches enhance the scalability and efficiency of the application without introducing unnecessary costs or complexity.

  • A. Correct.

    Correct. Increasing the memory allocated to a Lambda function can improve performance because AWS allocates more CPU power proportionally to the memory setting. This can reduce processing times during high traffic.

  • B. Incorrect.

    Incorrect. While AWS X-Ray can help analyze performance bottlenecks, it does not directly optimize the Lambda function or reduce the processing time.

  • C. Incorrect.

    Incorrect. Configuring reserved concurrency limits the maximum number of simultaneous executions, which could actually throttle your function during high traffic rather than optimizing it.

  • D. Correct.

    Correct. Implementing an Amazon SQS queue decouples the image upload process from the Lambda function, allowing the function to process tasks asynchronously and handle spikes in traffic more effectively.

  • E. Incorrect.

    Incorrect. While Provisioned Concurrency is useful for reducing cold start latency, the scenario does not mention cold start issues, and it could increase costs unnecessarily.

DVA-C02 Question 7

Select 3

You are developing a serverless application using AWS Lambda and Amazon S3. Your application processes images uploaded to an S3 bucket by resizing them. You want to ensure the Lambda function is triggered automatically each time a new image is uploaded. Which of the following steps do you need to take to achieve this?

  1. A

    Create an S3 event notification on the bucket and configure it to trigger your Lambda function.

  2. B

    Grant the S3 bucket permission to invoke the Lambda function by adding the appropriate permissions to the bucket policy.

  3. C

    Add a trigger for the S3 bucket in the Lambda function configuration.

  4. D

    Ensure the Lambda function has an execution role with permissions to access the S3 bucket.

  5. E

    Enable versioning on the S3 bucket to allow Lambda to process events reliably.

Show answer and explanation

Correct answers: A, C, D

Explanation

To automatically trigger a Lambda function when a new image is uploaded to an S3 bucket, you need to configure an S3 event notification on the bucket, add the bucket as a trigger in the Lambda function configuration, and ensure the Lambda function has an execution role with appropriate permissions. Adding permissions to the S3 bucket or enabling versioning is not necessary for this use case.

  • A. Correct.

    This step is correct and required. S3 event notifications allow you to configure a bucket to trigger a Lambda function when specific events occur, such as object creation.

  • B. Incorrect.

    This is incorrect. The S3 bucket does not need permissions to invoke the Lambda function; instead, the Lambda function needs permissions to interact with the S3 bucket.

  • C. Correct.

    This step is correct. You need to add a trigger to associate the S3 bucket with the Lambda function so that the function is invoked on relevant events.

  • D. Correct.

    This step is correct. The Lambda function requires an execution role with permissions (e.g., s3:GetObject) to access the S3 bucket and process the objects.

  • E. Incorrect.

    This is incorrect. While versioning is useful for data integrity and recovery, it is not required for setting up S3 event notifications or triggering a Lambda function.

DVA-C02 Question 8

Select 2

You are developing a serverless application hosted on AWS using AWS Lambda. The application needs to process messages from an Amazon SQS queue. To ensure the Lambda function can read messages from the queue, which of the following steps must you take?

  1. A

    Attach an IAM policy to the Lambda execution role that grants the 'sqs:ReceiveMessage' permission on the specific queue.

  2. B

    Enable the event source mapping between the SQS queue and the Lambda function.

  3. C

    Configure the SQS queue to trigger the Lambda function by adding the Lambda function's ARN to the queue's resource policy.

  4. D

    Configure the Lambda function to use the default execution role provided by AWS Lambda without any additional permissions.

  5. E

    Manually poll the SQS queue for messages within the Lambda function code.

Show answer and explanation

Correct answers: A, B

Explanation

To enable an AWS Lambda function to process messages from an Amazon SQS queue, you need to ensure the Lambda execution role has proper permissions (such as 'sqs:ReceiveMessage') to access the queue and configure an event source mapping between the SQS queue and the Lambda function. This setup allows Lambda to automatically poll and invoke the function when new messages are available in the queue.

  • A. Correct.

    Correct. The Lambda execution role needs permissions to interact with the SQS queue. Attaching an IAM policy with 'sqs:ReceiveMessage' ensures the function can pull messages from the queue.

  • B. Correct.

    Correct. Enabling the event source mapping establishes the connection between the SQS queue and the Lambda function, allowing automatic invocation of the function when new messages arrive in the queue.

  • C. Incorrect.

    Incorrect. While resource policies are used to control access to SQS queues, they are not required when Lambda is consuming messages from an SQS queue in the same account. The permissions are managed via the Lambda execution role.

  • D. Incorrect.

    Incorrect. The default execution role provided by AWS Lambda does not include permissions for accessing SQS queues. Additional permissions must be explicitly attached to the role.

  • E. Incorrect.

    Incorrect. Lambda automatically polls the SQS queue when event source mapping is configured, so manual polling is unnecessary and not recommended.

DVA-C02 Question 9

Single answer

An e-commerce company is building a microservices-based application to handle user orders. The application consists of separate services for order processing, payment, and inventory management. The company wants to ensure loose coupling between services while enabling real-time communication. Which architectural pattern is best suited for this scenario?

  1. A

    Event-driven architecture

  2. B

    Monolithic architecture

  3. C

    Orchestration-based architecture

  4. D

    Choreography-based architecture

Show answer and explanation

Correct answer: A

Explanation

Event-driven architecture is the best choice for this scenario because it promotes loose coupling between microservices while enabling real-time communication. Each service can publish or subscribe to events without direct dependencies on other services, making it highly scalable and maintainable for a microservices-based application.

  • A. Correct.

    Event-driven architecture is ideal for microservices as it allows services to communicate asynchronously through events, ensuring loose coupling and real-time updates. This is suitable for the described use case.

  • B. Incorrect.

    Monolithic architecture is a single, tightly coupled application structure, which goes against the microservices design principle. It is not appropriate for this scenario.

  • C. Incorrect.

    Orchestration-based architecture involves a central controller coordinating service interactions, which introduces tighter coupling. It is less suited for the goal of loose coupling.

  • D. Incorrect.

    Choreography-based architecture allows services to interact through reactive events and is loosely coupled, but it is typically more suitable for complex workflows with high inter-service dependencies. While similar to event-driven architecture, the scenario doesn't explicitly describe such a workflow.

DVA-C02 Question 10

Single answer

Your development team is building a serverless application using AWS Lambda. You need to design the architecture to handle real-time user registration events and ensure that multiple downstream services (such as sending a welcome email, updating a CRM, and logging metrics) are triggered asynchronously. Which architectural pattern is the MOST appropriate for this use case?

  1. A

    Event-driven architecture with Amazon SNS and multiple Lambda subscribers

  2. B

    Monolithic architecture with a single Lambda function handling all downstream tasks sequentially

  3. C

    Orchestration pattern using AWS Step Functions to coordinate downstream tasks

  4. D

    Microservices architecture with each task deployed in separate ECS services

Show answer and explanation

Correct answer: A

Explanation

The event-driven architecture pattern is ideal for scenarios where events (such as user registration) need to trigger multiple independent downstream processes asynchronously. Using Amazon SNS as the event source ensures a scalable and decoupled fanout mechanism, where each downstream service (like sending emails or updating a CRM) can process the event independently.

  • A. Correct.

    This is the correct answer. An event-driven architecture with Amazon SNS allows you to fan out the user registration event to multiple downstream subscribers (such as Lambda functions) asynchronously. This decouples the services and ensures scalability and reliability.

  • B. Incorrect.

    This is incorrect. A monolithic architecture where a single Lambda function sequentially handles all tasks would tightly couple the services, reducing scalability and increasing latency.

  • C. Incorrect.

    This is incorrect. While AWS Step Functions can be used for orchestration, it is better suited for workflows with explicit control and dependency management rather than for fanout scenarios.

  • D. Incorrect.

    This is incorrect. While microservices are a valid architectural pattern, deploying each task as separate ECS services introduces unnecessary complexity for this use case. A serverless, event-driven approach is more suitable.

Timed practice exam

Take a DVA-C02 practice test under exam conditions

65 questions in 130 minutes, drawn from this bank, with a score report and a per-question review when you finish.

Start timed exam

What the DVA-C02 exam covers

Official AWS Certified Developer - Associate exam domains and weightings.

  • Development with AWS Services

    32% of exam

  • Security

    26% of exam

  • Deployment

    24% of exam

  • Troubleshooting and Optimization

    18% of exam

All 399 DVA-C02 practice questions

Every question has a page with the answer and explanation. Numbers are stable, so you can bookmark or share them.

  1. 1.You are developing a serverless web application on AWS that allows users to upload images. The application...
  2. 2.You are developing a serverless application that processes images uploaded to an S3 bucket. When a new image...
  3. 3.You are developing a serverless web application using AWS Lambda, Amazon API Gateway, and Amazon DynamoDB....
  4. 4.You are developing a serverless application using AWS Lambda, and you need to securely retrieve database...
  5. 5.You are developing a serverless application using AWS Lambda. Your function processes images uploaded to an...
  6. 6.You are developing a serverless application using AWS Lambda. Your application processes images and stores...
  7. 7.You are developing a serverless application using AWS Lambda and Amazon S3. Your application processes images...
  8. 8.You are developing a serverless application hosted on AWS using AWS Lambda. The application needs to process...
  9. 9.An e-commerce company is building a microservices-based application to handle user orders. The application...
  10. 10.Your development team is building a serverless application using AWS Lambda. You need to design the...
  11. 11.You are designing a serverless application on AWS that processes user-uploaded images. The images need to be...
  12. 12.You are designing an order processing system for an e-commerce platform. The system must handle high volumes...
  13. 13.You are developing an application that processes customer orders. Each order creates a new record in an...
  14. 14.You are developing a serverless application on AWS that processes orders and stores them in DynamoDB. To...
  15. 15.You are developing an e-commerce application that uses AWS Lambda and Amazon API Gateway. A 'PlaceOrder' API...
  16. 16.You are developing an API that processes payment transactions using AWS Lambda and Amazon API Gateway. To...
  17. 17.You are designing a serverless application using AWS Lambda and API Gateway. The application needs to handle...
  18. 18.You are developing an AWS Lambda function to process customer orders for an e-commerce application. Each...
  19. 19.A company is developing a RESTful API using Amazon API Gateway and AWS Lambda. The API is designed to handle...
  20. 20.You are developing a web application that uses an Amazon API Gateway to trigger AWS Lambda functions. The API...
  21. 21.A development team is designing an e-commerce application on AWS. The system needs to process customer orders...
  22. 22.You are designing an e-commerce application on AWS. The application requires an architecture where different...
  23. 23.You are designing a job processing system on AWS where tasks need to be processed asynchronously. The tasks...
  24. 24.You are designing an e-commerce application on AWS that processes customer orders. The architecture currently...
  25. 25.You are developing a serverless application using AWS Lambda to process messages from an Amazon SQS queue....
  26. 26.You are developing a serverless application using AWS Lambda. Your Lambda function processes event messages...
  27. 27.You are developing a serverless application that processes customer orders using an AWS Lambda function. The...
  28. 28.You are developing a serverless application that processes messages from an Amazon SQS queue using an AWS...
  29. 29.You are developing a serverless application where an AWS Lambda function processes user-uploaded images. The...
  30. 30.You are developing an e-commerce application on AWS and need to process customer orders. Each order triggers...
  31. 31.You are developing a serverless application using AWS Lambda and Amazon SQS. A business requirement specifies...
  32. 32.A developer is building a serverless application on AWS where user data is uploaded via an API Gateway and...
  33. 33.You are developing an AWS Lambda function that processes events from an Amazon S3 bucket. The function needs...
  34. 34.You are developing an AWS Lambda function to process images uploaded to an Amazon S3 bucket. The function...
  35. 35.You are developing an AWS Lambda function that processes images uploaded to an S3 bucket. The function should...
  36. 36.You are developing an AWS Lambda function to process data from an Amazon S3 bucket. The function should...
  37. 37.You are developing a serverless application using AWS Lambda. The Lambda function needs to interact with an...
  38. 38.You are developing a serverless application using AWS Lambda and need to ensure that the Lambda function has...
  39. 39.You are developing a serverless application using AWS Lambda and require your Lambda function to access an...
  40. 40.You are developing a serverless application on AWS and need to process a large number of events in near...
  41. 41.You are developing a serverless application that processes messages from an Amazon SQS queue using an AWS...
  42. 42.You are developing a serverless application using AWS Lambda and need to process messages from an Amazon SQS...
  43. 43.You are developing a serverless application that processes data from an Amazon SQS queue using an AWS Lambda...
  44. 44.You are developing a serverless application using AWS Lambda and have configured an event source mapping to...
  45. 45.You are designing a stateless web application hosted on Amazon ECS (Elastic Container Service) and need to...
  46. 46.You are developing a stateless web application that needs to scale rapidly during peak traffic on AWS. Which...
  47. 47.You are developing an e-commerce application hosted on AWS. The application uses Amazon API Gateway and AWS...
  48. 48.You are developing a stateless web application on AWS that needs to handle a high volume of user requests. To...
  49. 49.You are developing a serverless application using AWS Lambda and want to implement unit testing for your...
  50. 50.You are developing a Lambda function in AWS that processes data from an S3 bucket. You have added logic to...
  51. 51.You are developing a serverless application using AWS Lambda and want to ensure your code is well-tested...
  52. 52.You are developing an AWS Lambda function using Python to process data from an Amazon S3 bucket. You want to...
  53. 53.You are developing a serverless application that processes customer orders in real-time. The application...
  54. 54.You are building a serverless application that processes image uploads. When a user uploads an image to an S3...
  55. 55.You are designing an event-driven architecture for a ticket booking application. When a user books a ticket,...
  56. 56.You are developing a serverless application that processes customer orders. When a customer places an order,...
  57. 57.You are developing a web application that experiences unpredictable traffic peaks. The application runs on...
  58. 58.Your e-commerce application is experiencing increased traffic during a holiday sale. You need to ensure that...
  59. 59.You are developing a serverless application using AWS Lambda, and you expect a significant increase in...
  60. 60.Your company runs a web application on a fleet of EC2 instances behind an Application Load Balancer (ALB)....
  61. 61.You are developing an AWS Lambda function that needs to access a private Amazon RDS database within a VPC in...
  62. 62.You have created an AWS Lambda function that needs to access a private Amazon RDS database hosted in a VPC....
  63. 63.You are developing a serverless application using AWS Lambda. Your Lambda function needs to access a private...
  64. 64.You are developing an AWS Lambda function that needs to access resources within a private subnet of a VPC,...
  65. 65.You are developing a serverless application using AWS Lambda, and your application requires low-latency...
  66. 66.You are developing a serverless application that processes customer orders and stores them in a database. The...
  67. 67.You are developing an e-commerce application hosted on AWS. The application needs to store user session data,...
  68. 68.You are developing a serverless application that uses Amazon DynamoDB to store user data. The application has...
  69. 69.You are developing a serverless application using AWS Lambda. Your function needs to access sensitive...
  70. 70.You are developing a serverless application on AWS that processes images uploaded to an S3 bucket. The...
  71. 71.You are developing a serverless application that uses AWS Lambda and Amazon S3. The Lambda function processes...
  72. 72.You are developing a serverless application using AWS Lambda and need to securely provide your function with...
  73. 73.You are developing a serverless application that processes large volumes of real-time data. The application...
  74. 74.You are developing an e-commerce application on AWS. The application needs to store product catalog...
  75. 75.A development team is building an e-commerce application on AWS. The application requires a database to...
  76. 76.Your application is designed to handle a large amount of unstructured data, such as JSON documents, with a...
  77. 77.You are developing a serverless application using AWS Lambda and Amazon DynamoDB. The application requires...
  78. 78.You are developing a serverless application using AWS Lambda and Amazon DynamoDB. Your application requires...
  79. 79.You are developing a serverless application using AWS Lambda and Amazon DynamoDB. Your application needs to...
  80. 80.You are developing a serverless application using AWS Lambda and Amazon DynamoDB. Your application needs to...
  81. 81.You are designing a DynamoDB table to store user activity logs for a web application. Each log entry includes...
  82. 82.You are designing a DynamoDB table to store log data for a large-scale application. The application generates...
  83. 83.You are designing a DynamoDB table to store user activity logs for a mobile application. Each activity log...
  84. 84.You are designing a DynamoDB table to store user activity logs for a mobile application. Each log entry...
  85. 85.A development team is building a photo-sharing application. The application will allow users to upload...
  86. 86.You are developing a serverless application that processes large image files uploaded by users. The...
  87. 87.A developer is building an application that requires storing images, videos, and documents. The application...
  88. 88.A company is building a video streaming application where users upload videos, and the application processes...
  89. 89.You are developing a serverless web application that uses Amazon DynamoDB as its primary database. The...
  90. 90.You are building a serverless e-commerce application that uses Amazon DynamoDB as the database. When a...
  91. 91.You are developing an e-commerce application using Amazon DynamoDB to store user orders. The application...
  92. 92.You are building an application that uses Amazon DynamoDB to store user profile data. The application...
  93. 93.You are developing an application that uses Amazon DynamoDB to store customer data. The table's primary key...
  94. 94.You are developing a serverless application using DynamoDB to store customer order data. The Orders table has...
  95. 95.You are developing an application that uses Amazon DynamoDB to store product data. The DynamoDB table has a...
  96. 96.You are developing a serverless application using AWS DynamoDB for a product catalog. The table has a primary...
  97. 97.You are developing an e-commerce application using Amazon DynamoDB to store product information. The table...
  98. 98.You are designing a DynamoDB table to store information about customer orders. Each order has a unique...
  99. 99.You are building an application that stores user data in an Amazon DynamoDB table. The table uses a partition...
  100. 100.A developer is designing an application that stores customer orders in an Amazon DynamoDB table. The table's...
  101. 101.You are developing an e-commerce web application that uses Amazon ElastiCache to improve performance. The...
  102. 102.You are developing an e-commerce application that uses an Amazon ElastiCache cluster to improve the...
  103. 103.You are developing an e-commerce application that uses Amazon DynamoDB as the database and Amazon ElastiCache...
  104. 104.You are developing a high-traffic e-commerce application that uses an Amazon DynamoDB table to store product...
  105. 105.A developer is managing an Amazon S3 bucket used for storing large amounts of log data. The logs are...
  106. 106.You are developing an application that stores large amounts of data in Amazon S3. Some of the data is...
  107. 107.You are developing an application that stores large amounts of user-generated content on Amazon S3. To...
  108. 108.Your company stores a large volume of log files in an Amazon S3 bucket. These logs are accessed frequently...
  109. 109.A developer is building a real-time data analytics application on AWS that processes streaming data from IoT...
  110. 110.An application running on Amazon EC2 handles real-time video processing. The processed video files need to be...
  111. 111.A company is deploying a containerized application on Amazon ECS. The application requires high-speed...
  112. 112.A developer is designing an application that processes large volumes of log files, which are required only...
  113. 113.You are developing an application that stores sensitive customer data in an Amazon S3 bucket. To meet strict...
  114. 114.You are developing a serverless application using AWS Lambda and API Gateway. The API handles sensitive...
  115. 115.A developer is creating a serverless application using AWS Lambda. The Lambda function will need to access an...
  116. 116.You are developing a serverless application using AWS Lambda, and you need to ensure that your Lambda...
  117. 117.You are developing a serverless application using AWS Lambda and API Gateway. The application needs to...
  118. 118.You are developing a serverless application using AWS Lambda that requires secure access to a DynamoDB table....
  119. 119.You are developing a serverless application on AWS that uses Amazon API Gateway, AWS Lambda, and Amazon...
  120. 120.You are developing a serverless application using AWS Lambda and API Gateway. The application needs to allow...
  121. 121.A developer is building a serverless application using AWS Lambda to process user-uploaded images. The...
  122. 122.You are developing a serverless application on AWS and need to ensure that your AWS Lambda function can...
  123. 123.You are developing a serverless application using AWS Lambda. The application processes images uploaded to an...
  124. 124.You are developing a serverless application using AWS Lambda to process images uploaded to an S3 bucket. The...
  125. 125.A company is building a web application that allows users to log in using their existing social media...
  126. 126.A company is building a customer-facing web application that requires users to log in with their existing...
  127. 127.A company is building a web application that allows users to log in using their existing corporate...
  128. 128.A company is building a web application where users can sign in using their existing social identity...
  129. 129.You are developing a serverless application on AWS that uses Amazon API Gateway to expose RESTful APIs and...
  130. 130.An e-commerce application hosted on AWS needs to authenticate users and grant temporary access to certain...
  131. 131.A developer is building a serverless application using AWS API Gateway and AWS Lambda. The application needs...
  132. 132.A developer is building a web application that uses Amazon API Gateway to expose backend APIs. The APIs...
  133. 133.Your company is building a web application where users can sign up, log in, and access various resources...
  134. 134.Your company is building a mobile application that requires user authentication and authorization. You need...
  135. 135.You are developing a mobile application where users need to sign in using their email and password....
  136. 136.A development team is building a mobile application that requires user authentication and access to AWS...
  137. 137.You are developing an application that stores files in an S3 bucket. The application runs on an EC2 instance...
  138. 138.A developer is building an application that uses an Amazon S3 bucket to store and serve static assets. The...
  139. 139.A developer is working on a serverless application that uses AWS Lambda to process data stored in an S3...
  140. 140.You are developing a serverless application using AWS Lambda and Amazon S3. Your Lambda function needs to...
  141. 141.A development team is building a serverless application using AWS Lambda functions, Amazon S3, and Amazon...
  142. 142.A company is using AWS to host its application. The development team is required to access resources such as...
  143. 143.A company is developing a serverless application using AWS Lambda. The application requires access to an S3...
  144. 144.You are designing an application that uses Amazon S3 to store files. The application has three user groups:...
  145. 145.You are developing an application that stores its data in an Amazon S3 bucket. The application needs to grant...
  146. 146.You are developing a web application that allows users to upload and share images. The images are stored in...
  147. 147.You are developing a photo-sharing application that stores user-uploaded images in an Amazon S3 bucket. The...
  148. 148.You are developing a photo-sharing application where users can upload and share images. The images are stored...
  149. 149.You are developing an application that uses AWS Lambda to process data from an Amazon S3 bucket. The Lambda...
  150. 150.A developer is working on an application hosted in AWS that requires access to an S3 bucket to read and write...
  151. 151.You are developing a serverless application using AWS Lambda. Your function needs to read data from an S3...
  152. 152.You are developing a serverless application on AWS and have created an AWS Lambda function that needs to read...
  153. 153.A development team wants to create fine-grained access control for their application running on AWS. They are...
  154. 154.Your team is working on implementing fine-grained access control for an application running on AWS. A...
  155. 155.Your development team needs to grant permissions to an AWS Lambda function to access an S3 bucket. The team...
  156. 156.A developer is setting up IAM permissions for a new application in AWS. The developer wants to use a policy...
  157. 157.You are developing an application that runs on Amazon EC2 instances and uses Amazon S3 for storing...
  158. 158.A company is building a serverless web application using AWS Lambda, API Gateway, and DynamoDB. They want to...
  159. 159.A company is building an application that uses an Amazon S3 bucket to store user-uploaded images. The...
  160. 160.A development team is building an application that needs to upload and retrieve objects from an Amazon S3...
  161. 161.A developer is building an application that stores sensitive customer data in an Amazon S3 bucket. The...
  162. 162.You are developing an application hosted on Amazon EC2 instances that stores sensitive customer data in an...
  163. 163.A developer is building an application that stores sensitive customer data in an Amazon S3 bucket. To meet...
  164. 164.You are developing a serverless application using AWS Lambda, and your function processes sensitive data that...
  165. 165.A developer is building a serverless application on AWS and needs to store application configuration settings...
  166. 166.You are developing a serverless application using AWS Lambda and need to ensure that your function can...
  167. 167.Your company is building a serverless application using AWS Lambda and Amazon DynamoDB. The application...
  168. 168.A developer is building a serverless application using AWS Lambda. The application requires connecting to an...
  169. 169.A developer is building an application that stores sensitive customer data in an Amazon S3 bucket. Compliance...
  170. 170.You are developing an application that stores sensitive customer data in Amazon S3. The application must...
  171. 171.You are developing a serverless application that stores sensitive customer data in an Amazon S3 bucket. The...
  172. 172.A developer is designing a serverless application that stores sensitive customer information in an Amazon...
  173. 173.You are developing an application that needs to securely communicate with multiple internal microservices...
  174. 174.A development team is building a secure internal web application that requires SSL/TLS encryption. The team...
  175. 175.You are developing a secure internal application that requires mutual TLS (mTLS) to authenticate clients and...
  176. 176.Your organization is hosting a secure web application on Amazon ECS using an Application Load Balancer (ALB)....
  177. 177.You are developing an application that uses AWS KMS to encrypt sensitive data. To ensure that your encryption...
  178. 178.You are developing an application that uses an AWS KMS (Key Management Service) Customer Managed Key (CMK) to...
  179. 179.You have an application running on AWS that uses a customer-managed AWS KMS key to encrypt sensitive data...
  180. 180.You are developing an application that uses an AWS KMS customer-managed key (CMK) to encrypt sensitive data....
  181. 181.An AWS developer is designing a secure file upload system for an S3 bucket. The system must ensure that the...
  182. 182.You are developing an application that processes sensitive customer data and stores it in an Amazon S3...
  183. 183.A developer is building a secure file upload application that stores sensitive data in Amazon S3. The...
  184. 184.Your application stores sensitive data in an Amazon S3 bucket. To meet compliance requirements, the data must...
  185. 185.You are developing an application that encrypts sensitive data using AWS Key Management Service (AWS KMS)....
  186. 186.A developer is designing an application that requires encryption for sensitive data stored in Amazon S3. They...
  187. 187.You are developing an application that encrypts sensitive customer data using AWS Key Management Service (AWS...
  188. 188.A developer is working on an application that requires encryption using AWS Key Management Service (AWS KMS)....
  189. 189.You are building a serverless application on AWS, and the application requires access to an external API. The...
  190. 190.You are developing an AWS Lambda function that processes credit card transactions. To comply with security...
  191. 191.You are developing a serverless application using AWS Lambda, and your function needs to connect to an RDS...
  192. 192.You are developing an application that requires access to an Amazon S3 bucket to store and retrieve sensitive...
  193. 193.You are developing a serverless application using AWS Lambda and Amazon DynamoDB. Your application requires...
  194. 194.You are developing a serverless application using AWS Lambda. The application needs to process large batches...
  195. 195.You are developing a serverless application using AWS Lambda and Amazon S3. Your Lambda function processes...
  196. 196.You are developing a serverless application using AWS Lambda. The Lambda function processes messages from an...
  197. 197.You are developing a serverless application that processes sensitive customer data, including personally...
  198. 198.You are developing an application that processes sensitive user data, including personally identifiable...
  199. 199.You are developing a healthcare application on AWS that stores and processes patient data, including...
  200. 200.Your application stores customer data in Amazon S3 and processes it using AWS Lambda. The data includes...
  201. 201.You are deploying a Node.js application to AWS Elastic Beanstalk. The application requires a database...
  202. 202.You are developing a serverless application using AWS Lambda. The Lambda function needs to connect to an...
  203. 203.You are developing a serverless application using AWS Lambda, and your function requires access to a...
  204. 204.You are developing a serverless application using AWS Lambda. The Lambda function needs to connect to a...
  205. 205.You are developing a serverless application on AWS that requires database credentials to connect to an Amazon...
  206. 206.You are developing a serverless application on AWS that uses an AWS Lambda function to connect to a MySQL...
  207. 207.A developer is building a serverless application on AWS that requires database credentials to connect to an...
  208. 208.You are developing a serverless application that runs on AWS Lambda and needs to access a database. The...
  209. 209.You are developing a serverless application on AWS using AWS Lambda. The function needs to access an Amazon...
  210. 210.You are developing a serverless application using AWS Lambda, which needs to interact with an Amazon S3...
  211. 211.You are developing a serverless application using AWS Lambda. The application requires access to an Amazon S3...
  212. 212.A developer is building a serverless application on AWS that requires access to an Amazon S3 bucket to store...
  213. 213.You are developing a serverless application using AWS Lambda and need to deploy the function to multiple...
  214. 214.You are deploying a serverless application using AWS SAM (Serverless Application Model). During the...
  215. 215.You are working on deploying a new version of your application hosted on AWS Elastic Beanstalk. Your team...
  216. 216.You are deploying a Node.js application using AWS Elastic Beanstalk. The application requires a specific...
  217. 217.You are developing a Node.js application that will be deployed to an Auto Scaling group of Amazon EC2...
  218. 218.You are preparing to deploy a Node.js application to AWS using AWS Elastic Beanstalk. The application...
  219. 219.You are tasked with preparing an application for deployment to AWS using AWS CodeDeploy. The application...
  220. 220.You are tasked with deploying a Python-based web application to AWS Elastic Beanstalk. The application...
  221. 221.A developer is working on an application that requires secure access to configuration data and sensitive...
  222. 222.A developer is building a microservices-based application that requires secure access to configuration data...
  223. 223.A developer is building a serverless application on AWS and needs to securely store and frequently retrieve...
  224. 224.A developer is working on a serverless application hosted on AWS Lambda. The application needs to fetch...
  225. 225.You are developing an AWS Lambda function that processes data from an S3 bucket. The function requires a...
  226. 226.You are developing an AWS Lambda function to process images uploaded to an S3 bucket. The function requires a...
  227. 227.You are developing an AWS Lambda function that requires access to a large, external library for data...
  228. 228.A developer is working on an AWS Lambda function that requires an external library not included in the...
  229. 229.You are developing a serverless application using AWS Lambda and API Gateway. Your team uses Git for version...
  230. 230.You are developing a serverless application using AWS Lambda and hosting the source code in a Git repository....
  231. 231.You are developing a serverless application using AWS Lambda and have integrated the codebase with a...
  232. 232.A developer is working on an AWS Lambda function that needs to pull code from a Git-based repository hosted...
  233. 233.You are developing a microservices-based application on AWS. The application consists of multiple...
  234. 234.You are developing a containerized application, and you need to store, manage, and deploy container images...
  235. 235.You are developing a microservices-based application and need to deploy your services as containers using...
  236. 236.You are a developer working on a containerized application. You need to store and manage your container...
  237. 237.You are developing a serverless application using AWS Lambda, and you want to test the application in a...
  238. 238.You are developing an application that uses AWS Lambda functions and interacts with an Amazon DynamoDB table....
  239. 239.You are testing an application in a development environment that interacts with an Amazon DynamoDB table. You...
  240. 240.You are developing a new serverless application using AWS Lambda. The application is currently in the...
  241. 241.A developer is building a serverless application that processes data in real-time using AWS Lambda. The...
  242. 242.A developer is working on an application that processes images uploaded to an Amazon S3 bucket. The...
  243. 243.A developer is building a serverless web application using AWS Lambda functions and Amazon API Gateway. The...
  244. 244.You are developing a serverless application using AWS Lambda. The application requires temporary access to an...
  245. 245.A developer wants to deploy an application to an Amazon ECS cluster with zero downtime. Which AWS service...
  246. 246.Your team is managing a microservices-based application and wants to automate the deployment process across...
  247. 247.You are developing a web application and need to automate the deployment process across multiple environments...
  248. 248.You are a developer tasked with deploying a new version of your application to an EC2-based environment. The...
  249. 249.You are developing a serverless application using AWS Lambda and API Gateway. To perform integration testing,...
  250. 250.You are developing a serverless application using AWS Lambda and API Gateway. To ensure reliable integration...
  251. 251.You are developing a serverless application using AWS Lambda and API Gateway. To validate the integration...
  252. 252.You are developing a serverless application using AWS Lambda and API Gateway. To perform integration testing...
  253. 253.You have deployed a Lambda function for an application using versioning. You want to provide your QA team...
  254. 254.You have developed a Lambda function that processes customer orders. To ensure safe deployments, you use...
  255. 255.You have a Lambda function that is actively in use and needs updates. To ensure that the changes do not...
  256. 256.You are developing an AWS Lambda function that processes data uploaded to an S3 bucket. You have multiple...
  257. 257.You are developing a CI/CD pipeline for your application using AWS CodePipeline. As part of your deployment...
  258. 258.You are working on an application that is deployed using AWS CodePipeline. As part of your deployment...
  259. 259.You are working on an application deployed using AWS CodePipeline. As part of automating deployment testing,...
  260. 260.Your development team is working on an application that is deployed using AWS CodePipeline. To ensure the...
  261. 261.A developer is building a serverless application using AWS Lambda. The application processes images uploaded...
  262. 262.You are developing a serverless application using AWS Lambda and need to securely store and retrieve...
  263. 263.A development team is designing a serverless application using AWS Lambda to process data uploaded to an S3...
  264. 264.You are developing a serverless application using AWS Lambda. One of your Lambda functions needs to access a...
  265. 265.A developer is deploying a new version of an API using Amazon API Gateway. The team wants to enable users to...
  266. 266.You are developing a REST API using Amazon API Gateway. Your team has created multiple stages to manage...
  267. 267.You are developing a serverless application using AWS API Gateway and Lambda. You want to create separate...
  268. 268.A developer is managing an API in Amazon API Gateway and wants to deploy it to different environments like...
  269. 269.You are managing a CI/CD pipeline in AWS CodePipeline for a web application. The pipeline has three stages:...
  270. 270.You are working on a CI/CD pipeline for an application hosted in AWS. The pipeline uses AWS CodePipeline and...
  271. 271.You are working on a CI/CD pipeline using AWS CodePipeline and AWS CodeBuild. Your team uses a GitHub...
  272. 272.You are working on a CI/CD pipeline using AWS CodePipeline to automate your application deployment. The...
  273. 273.A developer is building a serverless application using AWS Lambda and wants to implement unit tests to ensure...
  274. 274.You are developing an AWS Lambda function that interacts with an Amazon DynamoDB table to store user...
  275. 275.You are developing a serverless application using AWS Lambda. To ensure your code is robust and error-free,...
  276. 276.You are a developer working on an application using AWS services. You have a requirement to set up a CI/CD...
  277. 277.You are a developer responsible for deploying an application on AWS using CI/CD services. Your application is...
  278. 278.You are tasked with deploying a new version of your application to an Amazon ECS cluster using AWS...
  279. 279.You are a developer working on an e-commerce application and need to automate the deployment process of your...
  280. 280.You are developing a serverless application on AWS that processes data in real-time using AWS Lambda. The...
  281. 281.You are developing a serverless application using AWS Lambda and need to ensure that your function has access...
  282. 282.You are developing a serverless application using AWS Lambda and need to integrate it with an Amazon S3...
  283. 283.You are developing a serverless application using AWS Lambda and need to securely store sensitive...
  284. 284.You are working on an AWS Lambda-based application that uses a Git-based CI/CD pipeline for deployment. The...
  285. 285.You are working on an AWS Lambda function that is part of a serverless application. Your team uses Git as the...
  286. 286.You are developing a serverless application using AWS Lambda functions. The code for the application is...
  287. 287.A development team is using AWS CodePipeline to automate their CI/CD workflow. The team wants to integrate...
  288. 288.You are developing a CI/CD pipeline using AWS CodePipeline for deploying an application to a production...
  289. 289.You are developing a CI/CD pipeline using AWS CodePipeline for your application. The pipeline must include an...
  290. 290.You are developing a deployment pipeline for a web application using AWS CodePipeline. The pipeline includes...
  291. 291.You are configuring an AWS CodePipeline for an application deployment. The pipeline has multiple stages, and...
  292. 292.You are developing a serverless application on AWS that requires dynamic application configurations and...
  293. 293.You are developing a serverless application in AWS that requires dynamic configuration values and secure...
  294. 294.You are developing a serverless application in AWS Lambda that requires access to runtime configurations and...
  295. 295.Your company uses AWS AppConfig to manage feature flags and AWS Secrets Manager to store sensitive database...
  296. 296.You are a developer working on a CI/CD pipeline for deploying a serverless application built using AWS Lambda...
  297. 297.You are tasked with setting up a CI/CD pipeline for a serverless application using AWS services. The...
  298. 298.You are tasked with setting up a CI/CD pipeline for a serverless application that uses AWS Lambda, Amazon API...
  299. 299.Your development team is building a CI/CD pipeline for a microservices-based application hosted on AWS. The...
  300. 300.You are developing a serverless application that uses AWS Lambda and needs a secure way to manage and deploy...
  301. 301.You are tasked with deploying a serverless application on AWS that requires a Lambda function, an API Gateway...
  302. 302.A developer is tasked with deploying a serverless application on AWS. The application consists of a Lambda...
  303. 303.You are developing a serverless application using AWS Lambda that processes images uploaded to an Amazon S3...
  304. 304.You are developing a serverless application using AWS Lambda. Your function has several dependencies from...
  305. 305.You are developing an AWS Lambda function to process image uploads. The function uses a custom library for...
  306. 306.You are developing a serverless application using AWS Lambda. Your function requires a third-party library...
  307. 307.You are developing an AWS Lambda function written in Python, and it has multiple dependencies, including some...
  308. 308.You are developing an API with Amazon API Gateway and have deployed it to multiple stages: dev, staging, and...
  309. 309.You have an API deployed in AWS API Gateway with multiple stages: 'dev', 'test', and 'prod'. You want to...
  310. 310.You are developing a serverless application using Amazon API Gateway and AWS Lambda. You have deployed...
  311. 311.You are developing a serverless application using AWS API Gateway and Lambda. Your application has multiple...
  312. 312.You are deploying a new version of your application hosted on Amazon ECS using AWS CodeDeploy. The...
  313. 313.You are deploying a new version of your application on Amazon ECS using an Application Load Balancer. The...
  314. 314.You are deploying a new version of a critical microservice in your application using AWS Elastic Beanstalk....
  315. 315.You are working on deploying a new version of your application hosted on an Amazon ECS cluster. The...
  316. 316.Your application uses an Amazon S3 bucket to store and serve static content. Recently, users have reported...
  317. 317.A developer has deployed a Lambda function that processes data from an Amazon S3 bucket. However, the...
  318. 318.A developer has deployed an AWS Lambda function that processes data from an Amazon S3 bucket. The function...
  319. 319.A developer has deployed a Lambda function that processes events from an Amazon SQS queue. The function is...
  320. 320.A developer is troubleshooting an issue where a Lambda function periodically fails when processing messages...
  321. 321.Your team is experiencing increased latency in an AWS Lambda function that processes data from an S3 bucket....
  322. 322.Your development team is troubleshooting a latency issue in an AWS Lambda function that processes messages...
  323. 323.You are a developer troubleshooting a performance issue in an AWS Lambda function that processes data from an...
  324. 324.You are building an application that processes images uploaded by users. The images are stored in an Amazon...
  325. 325.You are developing a serverless application using AWS Lambda, and your function needs access to an Amazon S3...
  326. 326.You are developing a serverless application using AWS Lambda. The application processes images uploaded to an...
  327. 327.You are developing a serverless application using AWS Lambda. The application processes images uploaded to an...
  328. 328.Your team has deployed a serverless application using AWS Lambda, Amazon API Gateway, and Amazon DynamoDB....
  329. 329.An e-commerce application running on AWS is experiencing intermittent performance issues. As a developer, you...
  330. 330.A development team is running a critical serverless application on AWS Lambda with an Amazon API Gateway...
  331. 331.You are developing a serverless application on AWS using AWS Lambda. The application processes real-time user...
  332. 332.You are developing a serverless application that logs all API requests to Amazon CloudWatch Logs. You want to...
  333. 333.You are a developer tasked with analyzing your application's logs in Amazon CloudWatch Logs. You need to...
  334. 334.You are developing a serverless application that uses Amazon CloudWatch Logs to monitor and troubleshoot your...
  335. 335.You are a developer tasked with analyzing application logs stored in Amazon CloudWatch Logs. You need to...
  336. 336.You are developing a serverless application using AWS Lambda and need to visualize application performance...
  337. 337.You are developing a serverless application on AWS and need to create real-time data visualizations for...
  338. 338.You are developing a serverless application on AWS that processes large amounts of user behavior data in...
  339. 339.You are developing a serverless application using AWS Lambda and want to ensure your code complies with AWS...
  340. 340.You are developing a serverless application using AWS Lambda. During a recent code review, your team...
  341. 341.You are developing a serverless application using AWS Lambda and have integrated your code repository with...
  342. 342.As a developer, you are tasked with ensuring the codebase for your serverless application adheres to security...
  343. 343.Your application running on Amazon EC2 instances behind an Application Load Balancer (ALB) is returning an...
  344. 344.You are developing an application that uses Amazon API Gateway to expose RESTful APIs. During testing, you...
  345. 345.You are developing a serverless application on AWS Lambda that interacts with an Amazon API Gateway endpoint....
  346. 346.You are developing an application that interacts with an Amazon API Gateway endpoint. During testing, you...
  347. 347.You are developing an application using the AWS SDK for Python (Boto3) to upload files to an S3 bucket....
  348. 348.You are developing a serverless application using AWS Lambda and the AWS SDK for Python (boto3). During...
  349. 349.A developer is using the AWS SDK for Python (Boto3) to interact with an S3 bucket. While uploading a file,...
  350. 350.You are developing an application using the AWS SDK for Python (Boto3) to interact with an Amazon S3 bucket....
  351. 351.You are a developer troubleshooting a distributed application using AWS X-Ray. After enabling X-Ray tracing...
  352. 352.You are developing a serverless application using AWS Lambda, API Gateway, and DynamoDB. You enable AWS X-Ray...
  353. 353.Your team has implemented AWS X-Ray in a microservices-based application running on Amazon ECS. After...
  354. 354.You are a developer building a microservices-based application on AWS. You have integrated AWS X-Ray into the...
  355. 355.You are developing a serverless application using AWS Lambda and want to monitor its performance and...
  356. 356.You are developing a serverless application using AWS Lambda and need to implement observability to monitor...
  357. 357.You are developing a serverless application using AWS Lambda that interacts with multiple AWS services. The...
  358. 358.You are developing a serverless application using AWS Lambda and need to implement observability to monitor...
  359. 359.A developer is deploying an application on Amazon ECS using the Fargate launch type. The application needs to...
  360. 360.You are developing a serverless application using AWS Lambda. The application processes records from an...
  361. 361.You are developing a serverless application that uses AWS Lambda to process data from an Amazon S3 bucket....
  362. 362.Your team is developing a serverless application using AWS Lambda. The application processes uploaded images...
  363. 363.You are developing a microservices-based application running on Amazon ECS with AWS Fargate. The application...
  364. 364.You are developing a microservices-based application hosted on AWS, and you need to analyze the latency and...
  365. 365.You are developing a serverless application on AWS using AWS Lambda and API Gateway. The application is...
  366. 366.You are developing a microservices application deployed on Amazon ECS. The application consists of multiple...
  367. 367.A developer is building a serverless application on AWS and needs to troubleshoot performance issues and...
  368. 368.A development team is working on a serverless application hosted in AWS. They are trying to ensure smooth...
  369. 369.Your team is developing a serverless application using AWS Lambda, Amazon API Gateway, and DynamoDB. During a...
  370. 370.You are developing a serverless application on AWS and need to ensure you can effectively troubleshoot...
  371. 371.You are developing a serverless application on AWS and need to ensure logs are structured in a way that makes...
  372. 372.You are developing a serverless application using AWS Lambda and need to ensure that your logs are structured...
  373. 373.You are developing a serverless application using AWS Lambda and need to implement structured logging to make...
  374. 374.A developer is building a serverless application using AWS Lambda. To simplify debugging and enable better...
  375. 375.A developer is working on a serverless application deployed using AWS Lambda. The application processes...
  376. 376.You are developing a serverless application using AWS Lambda and Amazon API Gateway. You want to monitor the...
  377. 377.You are developing a microservices-based application hosted on AWS. Each service publishes custom application...
  378. 378.You are developing a serverless application using AWS Lambda, and you want to monitor the execution duration...
  379. 379.You are developing a serverless application using AWS Lambda that processes images uploaded to an Amazon S3...
  380. 380.You are developing a serverless application using AWS Lambda. The application processes high volumes of image...
  381. 381.You are developing a serverless e-commerce application using AWS Lambda. The application processes thousands...
  382. 382.A developer is working on an e-commerce application that experiences high traffic during seasonal sales. The...
  383. 383.A developer is building a serverless application that processes images uploaded to an Amazon S3 bucket. The...
  384. 384.You are developing a serverless application using AWS Lambda. The Lambda function processes data from an...
  385. 385.You are developing a serverless application using AWS Lambda and Amazon DynamoDB. The Lambda function...
  386. 386.You are developing a serverless application on AWS and need to process messages from an SQS queue. Each...
  387. 387.An e-commerce application running on AWS experiences high read traffic for product catalog data. The product...
  388. 388.A company is running a web application that experiences high read traffic for certain database queries. To...
  389. 389.A developer is working on an ecommerce application hosted on AWS. The application frequently retrieves...
  390. 390.Your application uses an Amazon RDS database to fetch frequently accessed, read-only data. The application is...
  391. 391.You are developing a serverless application using AWS Lambda that processes a batch of incoming messages from...
  392. 392.You are developing an e-commerce application where customers can place orders. To handle high concurrency...
  393. 393.You are developing a serverless application using AWS Lambda to process orders. The Lambda function is...
  394. 394.You are developing an application that processes orders from an SQS queue. The application must ensure that...
  395. 395.You are designing a serverless application where users upload images, and each upload triggers a processing...
  396. 396.Your application processes user-uploaded files and uses Amazon SQS to store metadata about the files....
  397. 397.You are developing a serverless application that processes user-uploaded images. The application uses an...
  398. 398.A developer is designing a serverless application that processes customer orders. The application needs to:...
  399. 399.

DVA-C02 exam dumps FAQ

Are these DVA-C02 dumps real exam questions?

No. These are original practice questions written to the AWS Certified Developer - Associate exam objectives, not questions copied from a live exam. Memorising leaked questions violates Amazon Web Services's candidate agreement and stops working the moment the question pool rotates. Use this bank to check your understanding of each domain and to find the topics you still need to study.

How many DVA-C02 practice questions are there?

399 questions, each with the correct answer, an explanation of the answer, and a note on why every other option is wrong. The first 10 are on this page and every question has its own page linked below.

Are the DVA-C02 exam dumps free?

Yes. Every question, answer and explanation on this page and the linked question pages is free to read without an account. A free HydraNode account adds timed practice exams, scoring and progress tracking across attempts.

How do I take a timed DVA-C02 practice test?

Sign in and start the AWS Certified Developer - Associate exam on HydraNode. A session gives you 65 questions drawn from this bank in 130 minutes, then a score report with a per-question review.

What topics does the DVA-C02 exam cover?

The official exam domains are: Development with AWS Services; Security; Deployment; Troubleshooting and Optimization.