ExamGecko
Home / Amazon / DVA-C01 / List of questions
Ask Question

Amazon DVA-C01 Practice Test - Questions Answers, Page 14

List of questions

Question 131

Report
Export
Collapse

A company has three different environments: Development, QA, and Production. The company wants to deploy its code first in the Development environment, then QA, and then Production. Which AWS service can be used to meet this requirement?

Use AWS CodeCommit to create multiple repositories to deploy the application.
Use AWS CodeCommit to create multiple repositories to deploy the application.
Use AWS CodeBuild to create, configure, and deploy multiple build application projects.
Use AWS CodeBuild to create, configure, and deploy multiple build application projects.
Use AWS Data Pipeline to create multiple data pipeline provisions to deploy the application.
Use AWS Data Pipeline to create multiple data pipeline provisions to deploy the application.
Use AWS CodeDeploy to create multiple deployment groups.
Use AWS CodeDeploy to create multiple deployment groups.
Suggested answer: D

Explanation:

https://docs.aws.amazon.com/codedeploy/latest/userguide/deployment-groups.html"You can associate more than one deployment group with an application in CodeDeploy. This makes it possible to deploy an application revision to different sets of instances at different times. For example, you might use one deployment group to deploy an application revision to a set of instances tagged Test where you ensure the quality of the code. Next, you deploy the same application revision to a deployment group with instances tagged Staging for additional verification. Finally, when you are ready to release the latest application to customers, you deploy to a deployment group that includes instances tagged Production. "

asked 16/09/2024
Sharhonda Herman
48 questions

Question 132

Report
Export
Collapse

A company is creating an application that will require users to access AWS services and allow them to reset their own passwords. Which of the following would allow the company to manage users and authorization while allowing users to reset their own passwords?

Amazon Cognito identify pools and AWS STS
Amazon Cognito identify pools and AWS STS
Amazon Cognito identity pools and AWS IAM
Amazon Cognito identity pools and AWS IAM
Amazon Cognito user pools and AWS KMS
Amazon Cognito user pools and AWS KMS
Amazon Cognito user pools and identity pools
Amazon Cognito user pools and identity pools
Suggested answer: D

Explanation:

https://serverless-stack.com/chapters/cognito-user-pool-vs-identity-pool.html

asked 16/09/2024
Melissa Taylor
30 questions

Question 133

Report
Export
Collapse

An application that runs on an Amazon EC2 instance needs to access and make API calls to multiple AWS services. What is the MOST secure way to provide access to the AWS services with MINIMAL management overhead?

Use AWS KMS to store and retrieve credentials.
Use AWS KMS to store and retrieve credentials.
Use EC2 instance profiles.
Use EC2 instance profiles.
Use AWS root user to make requests to the application.
Use AWS root user to make requests to the application.
Store and retrieve credentials from AWS CodeCommit.
Store and retrieve credentials from AWS CodeCommit.
Suggested answer: B

Explanation:

https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_switch-role-ec2.html

asked 16/09/2024
Alper Atar
43 questions

Question 134

Report
Export
Collapse

In a multi-container Docker environment in AWS Elastic Beanstalk, what is required to configure container instances in the environment?

An Amazon ECS task definition
An Amazon ECS task definition
An Amazon ECS cluster
An Amazon ECS cluster
A Docker in an application package
A Docker in an application package
A CLI for Elastic Beanstalk
A CLI for Elastic Beanstalk
Suggested answer: A

Explanation:

Explanation:

Reference:

https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_docker_ecs.html

asked 16/09/2024
Rohit Kumar
40 questions

Question 135

Report
Export
Collapse

A Development team currently supports an application that uses an in-memory store to save accumulated game results. Individual results are stored in a database. As part of migrating to AWS, the team needs to use automatic scaling. The team knows this will yield inconsistent results.

Where should the team store these accumulated game results to BEST allow for consistent results without impacting performance?

Amazon S3
Amazon S3
Amazon RDS
Amazon RDS
Amazon ElastiCache
Amazon ElastiCache
Amazon Kinesis
Amazon Kinesis
Suggested answer: C
asked 16/09/2024
Radoslaw Gajewski
36 questions

Question 136

Report
Export
Collapse

A company has a multi-tiered web application on AWS. During a recent spike in traffic, one of the primary relational databases on Amazon RDS could not serve all the traffic. Some read queries for repeatedly accessed items failed, so users received error messages.

What can be done to minimize the impact on database read queries MOST efficiently during future traffic spikes?

Use Amazon S3 to cache database query results.
Use Amazon S3 to cache database query results.
Use Amazon RDS as a custom origin for Amazon CloudFront.
Use Amazon RDS as a custom origin for Amazon CloudFront.
Use local storage and memory on Amazon EC2 instances to cache data.
Use local storage and memory on Amazon EC2 instances to cache data.
Use Amazon ElastiCache in front of the primary database to cache data.
Use Amazon ElastiCache in front of the primary database to cache data.
Suggested answer: D
asked 16/09/2024
Arslan Sheik
37 questions

Question 137

Report
Export
Collapse

A company has a website that is developed in PHP and WordPress and is launched using AWS Elastic Beanstalk. There is a new version of the website that needs to be deployed in the Elastic Beanstalk environment. The company cannot tolerate having the website offline if an update fails.

Deployments must have minimal impact and rollback as soon as possible.

What deployment method should be used?

All at once
All at once
Rolling
Rolling
Snapshots
Snapshots
Immutable
Immutable
Suggested answer: D

Explanation:

https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environmentmgmt-updatesimmutable.html

asked 16/09/2024
Sathish M
48 questions

Question 138

Report
Export
Collapse

A company maintains an application responsible for processing several thousand external callbacks each day. The company’s System administrators want to know how many callbacks are being received on a rolling basis, and they want this data available for 10 days. The company also wants the ability to issue automated alerts if the number of callbacks exceeds the defined thresholds. What is the MOST cost-effective way to address the need to track and alert on these statistics?

Push callback data to an Amazon RDS database that can be queried to show historical data and to alert on exceeded thresholds.
Push callback data to an Amazon RDS database that can be queried to show historical data and to alert on exceeded thresholds.
Push callback data to AWS X-Ray and use AWS Lambda to query, display, and alert on exceeded thresholds.
Push callback data to AWS X-Ray and use AWS Lambda to query, display, and alert on exceeded thresholds.
Push callback data to Amazon Kinesis Data Streams and invoke an AWS Lambda function that stores data in Amazon DynamoDB and sends the required alerts.
Push callback data to Amazon Kinesis Data Streams and invoke an AWS Lambda function that stores data in Amazon DynamoDB and sends the required alerts.
Push callback data to Amazon CloudWatch as a custom metric and use the CloudWatch alerting mechanisms to alert System Administrators.
Push callback data to Amazon CloudWatch as a custom metric and use the CloudWatch alerting mechanisms to alert System Administrators.
Suggested answer: D
asked 16/09/2024
Asif Ali
34 questions

Question 139

Report
Export
Collapse

Developer is creating an AWS Lambda function to process a stream of data from an Amazon Kinesis Data Stream. When the Lambda function parses the data and encounters a missing field, it exits the function with an error. The function is generating duplicate records from the Kinesis stream. When the Developer looks at the stream output without the Lambda function, there are no duplicate records. What is the reason for the duplicates?

The Lambda function did not advance the Kinesis stream pointer to the next record after the error.
The Lambda function did not advance the Kinesis stream pointer to the next record after the error.
The Lambda event source used asynchronous invocation, resulting in duplicate records.
The Lambda event source used asynchronous invocation, resulting in duplicate records.
The Lambda function did not handle the error, and the Lambda service attempted to reprocess the data.
The Lambda function did not handle the error, and the Lambda service attempted to reprocess the data.
The Lambda function is not keeping up with the amount of data coming from the stream.
The Lambda function is not keeping up with the amount of data coming from the stream.
Suggested answer: C

Explanation:

https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html

asked 16/09/2024
Tiago Martins
33 questions

Question 140

Report
Export
Collapse

A Developer must build an application that uses Amazon DynamoDB. The requirements state that items being stored in the DynamoDB table will be 7KB in size and that reads must be strongly consistent. The maximum read rate is 3 items per second, and the maximum write rate is 10 items per second.

How should the Developer size the DynamoDB table to meet these requirements?

Read: 3 read capacity unitsWrite: 70 write capacity units
Read: 3 read capacity unitsWrite: 70 write capacity units
Read: 6 read capacity unitsWrite: 70 write capacity units
Read: 6 read capacity unitsWrite: 70 write capacity units
Read: 6 read capacity unitsWrite: 10 write capacity units
Read: 6 read capacity unitsWrite: 10 write capacity units
Read: 3 read capacity unitsWrite: 10 write capacity units
Read: 3 read capacity unitsWrite: 10 write capacity units
Suggested answer: B

Explanation:

Explanation:

https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html

asked 16/09/2024
Shoban Babu
41 questions
Total 608 questions
Go to page: of 61
Search

Related questions