AWS-Certified-Developer-Associate Dumps

AWS-Certified-Developer-Associate Free Practice Test

Amazon AWS-Certified-Developer-Associate: Amazon AWS Certified Developer - Associate

QUESTION 1

- (Exam Topic 2)
AWS CodeBuild builds code for an application, creates the Docker image, pushes the image to Amazon
Elastic Container Registry (Amazon ECR), and tags the image with a unique identifier.
If the Developers already have AWS CLI configured on their workstations, how can the Docker images be pulled to the workstations?

Correct Answer: B
https://docs.aws.amazon.com/cli/latest/reference/ecr/get-login.html

QUESTION 2

- (Exam Topic 4)
A company hosts a monolithic application on Amazon EC2 instances. The company starts converting some features of the application to a serverless architecture by using Amazon API Gateway and AWS Lambda After the migration, some users report problems with payment processing
Upon inspection, a developer discovers that the Lambda function that calls the external payment API is taking longer than expected Therefore, the API Gateway requests are timing out
What should the developer do to resolve this issue in the serverless architecture?

Correct Answer: B

QUESTION 3

- (Exam Topic 1)
An application stores payroll information nightly in DynamoDB for a large number of employees across hundreds of offices. Item attributes consist of individual name, office identifier, and cumulative daily hours. Managers run reports for ranges of names working in their office. One query is. "Return all Items in this office for names starting with A through E".
Which table configuration will result in the lowest impact on provisioned throughput for this query?

Correct Answer: B
https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.CoreComponents.html
Partition key and sort key – Referred to as a composite primary key, this type of key is composed of two attributes. The first attribute is the partition key, and the second attribute is the sort key. DynamoDB uses the partition key value as input to an internal hash function. The output from the hash function determines the partition (physical storage internal to DynamoDB) in which the item will be stored. All items with the same partition key value are stored together, in sorted order by sort key value.

QUESTION 4

- (Exam Topic 1)
Which EC2 API call would you use to retrieve a list of Amazon Machine Images (AMIs)?

Correct Answer: C
https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeImages.html
Describes the specified images (AMIs, AKIs, and ARIs) available to you or all of the images available to you.

QUESTION 5

- (Exam Topic 1)
When a Simple Queue Service message triggers a task that takes 5 minutes to complete, which process below will result in successful processing of the message and remove it from the queue while minimizing the chances of duplicate processing?

Correct Answer: A
https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-visibility-timeout.html