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

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

List of questions

Question 181

Report
Export
Collapse

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?

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.
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.
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.
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.
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.
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.
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.
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.
Suggested answer: B
asked 16/09/2024
Charly Ndedi Priso
35 questions

Question 182

Report
Export
Collapse

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?

AWS Lambda
AWS Lambda
Amazon Cognito
Amazon Cognito
AWS IAM
AWS IAM
Amazon EC2
Amazon EC2
Suggested answer: B
asked 16/09/2024
Michele Valvason
40 questions

Question 183

Report
Export
Collapse

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?

Amazon SNS with fanout to an SQS queue for each application
Amazon SNS with fanout to an SQS queue for each application
Amazon SNS with fanout to an SQS FIFO (first-in, firtst-out) queue for each application
Amazon SNS with fanout to an SQS FIFO (first-in, firtst-out) queue for each application
Amazon Kinesis Firehouse
Amazon Kinesis Firehouse
Amazon Kinesis Streams
Amazon Kinesis Streams
Suggested answer: D
asked 16/09/2024
Bill May
45 questions

Question 184

Report
Export
Collapse

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?

Deploy the X-Ray SDK with the application and use X-Ray annotation.
Deploy the X-Ray SDK with the application and use X-Ray annotation.
Install the X-Ray daemon and instrument the application code.
Install the X-Ray daemon and instrument the application code.
Install the X-Ray daemon and configure it to forward data to Amazon CloudWatch Events.
Install the X-Ray daemon and configure it to forward data to Amazon CloudWatch Events.
Deploy the X-Ray SDK with the application and instrument the application code.
Deploy the X-Ray SDK with the application and instrument the application code.
Suggested answer: C
asked 16/09/2024
lakshmi potla
30 questions

Question 185

Report
Export
Collapse

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?

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

Explanation:

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

asked 16/09/2024
JEROME SANANES
40 questions

Question 186

Report
Export
Collapse

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?

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

Explanation:

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

asked 16/09/2024
Samantha Carpenter
29 questions

Question 187

Report
Export
Collapse

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?

Modify the application to have both shared images and caching data written to Amazon EBS.
Modify the application to have both shared images and caching data written to Amazon EBS.
Modify the application to read and write cache data on Amazon S3, and also store shared images on S3.
Modify the application to read and write cache data on Amazon S3, and also store shared images on S3.
Modify the application to use Amazon S3 for serving shared images; cache data can then be written to local disks.
Modify the application to use Amazon S3 for serving shared images; cache data can then be written to local disks.
Modify the application to read and write cache data on Amazon S3, while continuing to write shared images to local disks.
Modify the application to read and write cache data on Amazon S3, while continuing to write shared images to local disks.
Suggested answer: C
asked 16/09/2024
Lance Gentle
45 questions

Question 188

Report
Export
Collapse

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?

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

Explanation:

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

asked 16/09/2024
Lee Greenshields
37 questions

Question 189

Report
Export
Collapse

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?

AWS Lambda
AWS Lambda
Amazon S3
Amazon S3
Amazon DynamoDB
Amazon DynamoDB
Amazon Cognito
Amazon Cognito
Suggested answer: D
asked 16/09/2024
David Guest
41 questions

Question 190

Report
Export
Collapse

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?

Amazon API Gateway, Amazon S3
Amazon API Gateway, Amazon S3
AWS Lambda, Amazon DynamoDB
AWS Lambda, Amazon DynamoDB
Amazon EC2, Amazon Aurora
Amazon EC2, Amazon Aurora
Amazon Cognito, Amazon RDS
Amazon Cognito, Amazon RDS
Amazon ECS, Amazon EBS
Amazon ECS, Amazon EBS
Suggested answer: C
asked 16/09/2024
Martijn Pollmann
36 questions
Total 608 questions
Go to page: of 61
Search

Related questions