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

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

List of questions

Question 21

Report
Export
Collapse

Company C has recently launched an online commerce site for bicycles on AWS. They have a "Product" DynamoDB table that stores details for each bicycle, such as, manufacturer, color, price, quantity and size to display in the online store. Due to customer demand, they want to include an image for each bicycle along with the existing details. Which approach below provides the least impact to provisioned throughput on the "Product" table?

Serialize the image and store it in multiple DynamoDB tables
Serialize the image and store it in multiple DynamoDB tables
Create an "Images" DynamoDB table to store the Image with a foreign key constraint to the "Product” table
Create an "Images" DynamoDB table to store the Image with a foreign key constraint to the "Product” table
Add an image data type to the "Product" table to store the images in binary format
Add an image data type to the "Product" table to store the images in binary format
Store the images in Amazon S3 and add an S3 URL pointer to the "Product" table item for each image
Store the images in Amazon S3 and add an S3 URL pointer to the "Product" table item for each image
Suggested answer: D

Explanation:

https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/bp-use-s3-too.html#bpuse-s3-too-large-valuesFor example, consider the ProductCatalog table in the Creating Tables and Loading Data for CodeExamples in DynamoDB section. Items in this table store information about item price, description,book authors, and dimensions for other products. If you wanted to store an image of each produc tthat was too large to fit in an item, you could store the images in Amazon S3 instead of in DynamoDB.

asked 16/09/2024
Duc Hai
40 questions

Question 22

Report
Export
Collapse

Which DynamoDB limits can be raised by contacting AWS support? Choose 2 answers

The number of hash keys per account
The number of hash keys per account
The maximum storage used per account
The maximum storage used per account
The number of tables per account
The number of tables per account
The number of local secondary indexes per account
The number of local secondary indexes per account
The number of provisioned throughput units per account
The number of provisioned throughput units per account
Suggested answer: C, E

Explanation:

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

asked 16/09/2024
Mohamed Ismail
49 questions

Question 23

Report
Export
Collapse

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?

Retrieve the message with an increased visibility timeout, process the message, delete the message from the queue
Retrieve the message with an increased visibility timeout, process the message, delete the message from the queue
Retrieve the message with an increased visibility timeout, delete the message from the queue, process the message
Retrieve the message with an increased visibility timeout, delete the message from the queue, process the message
Retrieve the message with increased DelaySeconds, process the message, delete the message from the queue
Retrieve the message with increased DelaySeconds, process the message, delete the message from the queue
Retrieve the message with increased DelaySeconds, delete the message from the queue, process the message
Retrieve the message with increased DelaySeconds, delete the message from the queue, process the message
Suggested answer: A

Explanation:

https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-visibilitytimeout.html

asked 16/09/2024
Sydney Taing
33 questions

Question 24

Report
Export
Collapse

Company A has an S3 bucket containing premier content that they intend to make available to only paid subscribers of their website. The S3 bucket currently has default permissions of all objects being private to prevent inadvertent exposure of the premier content to non-paying website visitors.

How can Company A provide only paid subscribers the ability to download a premier content file in the S3 bucket?

Apply a bucket policy that grants anonymous users to download the content from the S3 bucket
Apply a bucket policy that grants anonymous users to download the content from the S3 bucket
Generate a pre-signed object URL for the premier content file when a paid subscriber requests a download
Generate a pre-signed object URL for the premier content file when a paid subscriber requests a download
Add a bucket policy that requires Multi-Factor Authentication for requests to access the S3 bucket objects
Add a bucket policy that requires Multi-Factor Authentication for requests to access the S3 bucket objects
Enable server-side encryption on the S3 bucket for data protection against the non-paying website visitors
Enable server-side encryption on the S3 bucket for data protection against the non-paying website visitors
Suggested answer: B
asked 16/09/2024
Hariett Mambo
44 questions

Question 25

Report
Export
Collapse

Which of the following is an example of a good DynamoDB hash key schema for provisioned throughput efficiency?

User ID, where the application has many different users.
User ID, where the application has many different users.
Status Code where most status codes are the same
Status Code where most status codes are the same
Device ID, where one is by far more popular than all the others.
Device ID, where one is by far more popular than all the others.
Game Type, where there are three possible game types
Game Type, where there are three possible game types
Suggested answer: A
asked 16/09/2024
Daniel Yamamoto
43 questions

Question 26

Report
Export
Collapse

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?

Configure the table to have a hash index on the name attribute, and a range index on the office identifier
Configure the table to have a hash index on the name attribute, and a range index on the office identifier
Configure the table to have a range index on the name attribute, and a hash index on the office identifier
Configure the table to have a range index on the name attribute, and a hash index on the office identifier
Configure a hash index on the name attribute and no range index
Configure a hash index on the name attribute and no range index
Configure a hash index on the office Identifier attribute and no range index
Configure a hash index on the office Identifier attribute and no range index
Suggested answer: B

Explanation:

https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.CoreComponents.htmlPartition key and sort key – Referred to as a composite primary key, this type of key is composed oftwo 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.

asked 16/09/2024
FOTIS FOURLIAS
47 questions

Question 27

Report
Export
Collapse

What is one key difference between an Amazon EBS-backed and an instance-store backed instance?

Virtual Private Cloud requires EBS backed instances
Virtual Private Cloud requires EBS backed instances
Amazon EBS-backed instances can be stopped and restarted
Amazon EBS-backed instances can be stopped and restarted
Auto scaling requires using Amazon EBS-backed instances.
Auto scaling requires using Amazon EBS-backed instances.
Instance-store backed instances can be stopped and restarted.
Instance-store backed instances can be stopped and restarted.
Suggested answer: B

Explanation:

https://aws.amazon.com/premiumsupport/knowledge-center/instance-store-vs-ebs/

asked 16/09/2024
David Miller
32 questions

Question 28

Report
Export
Collapse

How can you secure data at rest on an EBS volume?

Attach the volume to an instance using EC2's SSL interface.
Attach the volume to an instance using EC2's SSL interface.
Write the data randomly instead of sequentially.
Write the data randomly instead of sequentially.
Use an encrypted file system on top of the BBS volume.
Use an encrypted file system on top of the BBS volume.
Encrypt the volume using the S3 server-side encryption service.
Encrypt the volume using the S3 server-side encryption service.
Create an IAM policy that restricts read and write access to the volume.
Create an IAM policy that restricts read and write access to the volume.
Suggested answer: C
asked 16/09/2024
saiming wong
37 questions

Question 29

Report
Export
Collapse

Which of the following is chosen as the default region when making an API call with an AWS SDK?

ap-northeast-1
ap-northeast-1
us-west-2
us-west-2
us-east-1
us-east-1
eu-west-1
eu-west-1
us-central-1
us-central-1
Suggested answer: C

Explanation:

https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/java-dg-region-selection.html. Thissection applies only when using a client builder to access AWS services. AWS clients created by usingthe client constructor will not automatically determine region from the environment and will,instead, use the default SDK region (USEast1).

asked 16/09/2024
Charl Grove
32 questions

Question 30

Report
Export
Collapse

Which of the following statements about SWF are true? Choose 3 answers

SWF tasks are assigned once and never duplicated
SWF tasks are assigned once and never duplicated
SWF requires an S3 bucket for workflow storage
SWF requires an S3 bucket for workflow storage
SWF workflow executions can last up to a year
SWF workflow executions can last up to a year
SWF triggers SNS notifications on task assignment
SWF triggers SNS notifications on task assignment
SWF uses deciders and workers to complete tasks
SWF uses deciders and workers to complete tasks
SWF requires at least 1 EC2 instance per domain
SWF requires at least 1 EC2 instance per domain
Suggested answer: A, C, E
asked 16/09/2024
Ramzi Smair
36 questions
Total 608 questions
Go to page: of 61

Related questions