ExamGecko
Home Home / Amazon / DVA-C01

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

Question list
Search
Search

List of questions

Search

Related questions











The Developer for a retail company must integrate a fraud detection solution into the order processing solution. The fraud detection solution takes between ten and thirty minutes to verify an order. At peak, the web site can receive one hundred orders per minute.

What is the most scalable method to add the fraud detection solution to the order processing pipeline?

A.
Add all new orders to an Amazon SQS queue. Configure a fleet of 10 EC2 instances spanning multiple AZs with the fraud detection solution installed on them to pull orders from this queue. Update the order with a pass or fails status.
A.
Add all new orders to an Amazon SQS queue. Configure a fleet of 10 EC2 instances spanning multiple AZs with the fraud detection solution installed on them to pull orders from this queue. Update the order with a pass or fails status.
Answers
B.
Add all new orders to an SQS queue. Configure an Auto Scaling group that uses the queue depth metric as its unit of scale to launch a dynamically-sized fleet of EC2 instances spanning multiple AZs with the fraud detection solution installed on them to pull orders from this queue. Update the order with a pass or fails status.
B.
Add all new orders to an SQS queue. Configure an Auto Scaling group that uses the queue depth metric as its unit of scale to launch a dynamically-sized fleet of EC2 instances spanning multiple AZs with the fraud detection solution installed on them to pull orders from this queue. Update the order with a pass or fails status.
Answers
C.
Add all new orders to an Amazon Kinesis Stream. Subscribe a Lambda function to automatically read batches of records from the Kinesis Stream. The Lambda function includes the fraud detection software and will update the order with a pass or fail status.
C.
Add all new orders to an Amazon Kinesis Stream. Subscribe a Lambda function to automatically read batches of records from the Kinesis Stream. The Lambda function includes the fraud detection software and will update the order with a pass or fail status.
Answers
D.
Write all new orders to Amazon DynamoDB. Configure DynamoDB Streams to include all new orders. Subscribe a Lambda function to automatically read batches of records from the Kinesis Stream. The Lambda function includes the fraud detection software and will update the order with a pass or fail status.
D.
Write all new orders to Amazon DynamoDB. Configure DynamoDB Streams to include all new orders. Subscribe a Lambda function to automatically read batches of records from the Kinesis Stream. The Lambda function includes the fraud detection software and will update the order with a pass or fail status.
Answers
Suggested answer: B

A Developer is creating a mobile application with a limited budget. The solution requires a scalable service that will enable customers to sign up and authenticate into the mobile application while using the organization’s current SAML 2.0 identity provider.

Which AWS service should be used to meet these requirements?

A.
AWS Lambda
A.
AWS Lambda
Answers
B.
Amazon Cognito
B.
Amazon Cognito
Answers
C.
AWS IAM
C.
AWS IAM
Answers
D.
Amazon EC2
D.
Amazon EC2
Answers
Suggested answer: B

An application is real-time processing millions of events that are received through an API.

What service could be used to allow multiple consumers to process the data concurrently and MOST cost-effectively?

A.
Amazon SNS with fanout to an SQS queue for each application
A.
Amazon SNS with fanout to an SQS queue for each application
Answers
B.
Amazon SNS with fanout to an SQS FIFO (first-in, firtst-out) queue for each application
B.
Amazon SNS with fanout to an SQS FIFO (first-in, firtst-out) queue for each application
Answers
C.
Amazon Kinesis Firehouse
C.
Amazon Kinesis Firehouse
Answers
D.
Amazon Kinesis Streams
D.
Amazon Kinesis Streams
Answers
Suggested answer: D

A Developer needs to use AWS X-Ray to monitor an application that is deployed on EC2 instances.

What steps have to be executed to perform the monitoring?

A.
Deploy the X-Ray SDK with the application and use X-Ray annotation.
A.
Deploy the X-Ray SDK with the application and use X-Ray annotation.
Answers
B.
Install the X-Ray daemon and instrument the application code.
B.
Install the X-Ray daemon and instrument the application code.
Answers
C.
Install the X-Ray daemon and configure it to forward data to Amazon CloudWatch Events.
C.
Install the X-Ray daemon and configure it to forward data to Amazon CloudWatch Events.
Answers
D.
Deploy the X-Ray SDK with the application and instrument the application code.
D.
Deploy the X-Ray SDK with the application and instrument the application code.
Answers
Suggested answer: C

A Developer will be using the AWS CLI on a local development server to manage AWS services.

What can be done to ensure that the CLI uses the Developer’s IAM permissions when making commands?

A.
Specify the Developer’s IAM access key ID and secret access key as parameters for each CLI command.
A.
Specify the Developer’s IAM access key ID and secret access key as parameters for each CLI command.
Answers
B.
Run the aws configure CLI command, and provide the Developer’s IAM access key ID and secret access key.
B.
Run the aws configure CLI command, and provide the Developer’s IAM access key ID and secret access key.
Answers
C.
Specify the Developer’s IAM user name and password as parameters for each CLI command.
C.
Specify the Developer’s IAM user name and password as parameters for each CLI command.
Answers
D.
Use the Developer’s IAM role when making the CLI command.
D.
Use the Developer’s IAM role when making the CLI command.
Answers
Suggested answer: B

Explanation:

https://medium.com/faun/setting-up-a-production-environment-using-our-local-developmentserver-and-aws-f5eea3b5be60

After installing the AWS CLI, a Developer tries to run the command aws configure but receives the following error:

Error: aws: command not found

What is the most likely cause of this error?

A.
The aws executable is not in the PATH environment variable.
A.
The aws executable is not in the PATH environment variable.
Answers
B.
Access to the aws executable has been denied to the installer.
B.
Access to the aws executable has been denied to the installer.
Answers
C.
Incorrect AWS credentials were provided.
C.
Incorrect AWS credentials were provided.
Answers
D.
The aws script does not have an executable file mode.
D.
The aws script does not have an executable file mode.
Answers
Suggested answer: A

Explanation:

https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-troubleshooting.html

An on-premises legacy application is caching data files locally and writing shared images to local disks. What is necessary to allow for horizontal scaling when migrating the application to AWS?

A.
Modify the application to have both shared images and caching data written to Amazon EBS.
A.
Modify the application to have both shared images and caching data written to Amazon EBS.
Answers
B.
Modify the application to read and write cache data on Amazon S3, and also store shared images on S3.
B.
Modify the application to read and write cache data on Amazon S3, and also store shared images on S3.
Answers
C.
Modify the application to use Amazon S3 for serving shared images; cache data can then be written to local disks.
C.
Modify the application to use Amazon S3 for serving shared images; cache data can then be written to local disks.
Answers
D.
Modify the application to read and write cache data on Amazon S3, while continuing to write shared images to local disks.
D.
Modify the application to read and write cache data on Amazon S3, while continuing to write shared images to local disks.
Answers
Suggested answer: C

A Developer must trigger an AWS Lambda function based on the item lifecycle activity in an Amazon DynamoDB table. How can the Developer create the solution?

A.
Enable a DynamoDB stream that publishes an Amazon SNS message. Trigger the Lambda function synchronously from the SNS message.
A.
Enable a DynamoDB stream that publishes an Amazon SNS message. Trigger the Lambda function synchronously from the SNS message.
Answers
B.
Enable a DynamoDB stream that publishes an SNS message. Trigger the Lambda function asynchronously from the SNS message.
B.
Enable a DynamoDB stream that publishes an SNS message. Trigger the Lambda function asynchronously from the SNS message.
Answers
C.
Enable a DynamoDB stream, and trigger the Lambda function synchronously from the stream.
C.
Enable a DynamoDB stream, and trigger the Lambda function synchronously from the stream.
Answers
D.
Enable a DynamoDB stream, and trigger the Lambda function asynchronously from the stream.
D.
Enable a DynamoDB stream, and trigger the Lambda function asynchronously from the stream.
Answers
Suggested answer: C

Explanation:

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

A gaming company is developing a mobile game application for iOS® and Android® platforms. This mobile game securely stores user data locally on the device. The company wants to allow users to use multiple device for the game, which requires user data synchronization across device.

Which service should be used to synchronize user data across devices without the need to create a backend application?

A.
AWS Lambda
A.
AWS Lambda
Answers
B.
Amazon S3
B.
Amazon S3
Answers
C.
Amazon DynamoDB
C.
Amazon DynamoDB
Answers
D.
Amazon Cognito
D.
Amazon Cognito
Answers
Suggested answer: D

An on-premises application is implemented using a Linux, Apache, MySQL and PHP (LAMP) stack.

The Developer wants to run this application in AWS.

Which of the following sets of AWS services can be used to run this stack?

A.
Amazon API Gateway, Amazon S3
A.
Amazon API Gateway, Amazon S3
Answers
B.
AWS Lambda, Amazon DynamoDB
B.
AWS Lambda, Amazon DynamoDB
Answers
C.
Amazon EC2, Amazon Aurora
C.
Amazon EC2, Amazon Aurora
Answers
D.
Amazon Cognito, Amazon RDS
D.
Amazon Cognito, Amazon RDS
Answers
E.
Amazon ECS, Amazon EBS
E.
Amazon ECS, Amazon EBS
Answers
Suggested answer: C
Total 608 questions
Go to page: of 61