ExamGecko
Home Home / Amazon / DVA-C01

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

Question list
Search
Search

Related questions











Which of the following platforms are supported by Elastic Beanstalk? Choose 2 answers

A.
Apache Tomcat
A.
Apache Tomcat
Answers
B.
.NET
B.
.NET
Answers
C.
IBM Websphere
C.
IBM Websphere
Answers
D.
Oracle JBoss
D.
Oracle JBoss
Answers
E.
Jetty
E.
Jetty
Answers
Suggested answer: A, B

Explanation:

https://docs.aws.amazon.com/elasticbeanstalk/latest/platforms/platforms-supported.html

Which code snippet below returns the URL of a load balanced web site created in CloudFormation with an AWS::ElasticLoadBalancing::LoadBalancer resource name "ElasticLoad Balancer"?

A.
"Fn::Join" : ["". [ "http://", {"Fn::GetAtr” : [ "ElasticLoadBalancer","DNSName"]}]]
A.
"Fn::Join" : ["". [ "http://", {"Fn::GetAtr” : [ "ElasticLoadBalancer","DNSName"]}]]
Answers
B.
"Fn::Join" : ["". [ "http://", {"Fn::GetAtr” : [ "ElasticLoadBalancer","Url"]}]]
B.
"Fn::Join" : ["". [ "http://", {"Fn::GetAtr” : [ "ElasticLoadBalancer","Url"]}]]
Answers
C.
"Fn::Join" : ["". [ "http://", {"Ref" : "ElasticLoadBalancerUrl"}]]
C.
"Fn::Join" : ["". [ "http://", {"Ref" : "ElasticLoadBalancerUrl"}]]
Answers
D.
"Fn::Join" : [".", [ "http://", {"Ref" : "ElasticLoadBalancerDNSName"}]]
D.
"Fn::Join" : [".", [ "http://", {"Ref" : "ElasticLoadBalancerDNSName"}]]
Answers
Suggested answer: A

Explanation:

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-referencegetatt.html

Which features can be used to restrict access to data in S3? Choose 2 answers

A.
Use S3 Virtual Hosting
A.
Use S3 Virtual Hosting
Answers
B.
Set an S3 Bucket policy.
B.
Set an S3 Bucket policy.
Answers
C.
Enable IAM Identity Federation.
C.
Enable IAM Identity Federation.
Answers
D.
Set an S3 ACL on the bucket or the object.
D.
Set an S3 ACL on the bucket or the object.
Answers
E.
Create a CloudFront distribution for the bucket
E.
Create a CloudFront distribution for the bucket
Answers
Suggested answer: B, D

Explanation:

https://aws.amazon.com/premiumsupport/knowledge-center/secure-s3-resources/


What happens, by default, when one of the resources in a CloudFormation stack cannot be created?

A.
Previously-created resources are kept but the stack creation terminates.
A.
Previously-created resources are kept but the stack creation terminates.
Answers
B.
Previously-created resources are deleted and the stack creation terminates.
B.
Previously-created resources are deleted and the stack creation terminates.
Answers
C.
The stack creation continues, and the final results indicate which steps failed.
C.
The stack creation continues, and the final results indicate which steps failed.
Answers
D.
CloudFormation templates are parsed in advance so stack creation is guaranteed to succeed.
D.
CloudFormation templates are parsed in advance so stack creation is guaranteed to succeed.
Answers
Suggested answer: B

Explanation:

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacks.htmlAWS CloudFormation ensures all stack resources are created or deleted as appropriate. Because AWSCloudFormation treats the stack resources as a single unit, they must all be created or deleted successfully for the stack to be created or deleted. If a resource cannot be created, AWSCloudFormation rolls the stack back and automatically deletes any resources that were created. If are source cannot be deleted, any remaining resources are retained until the stack can be successfully deleted.

Which of the following are correct statements with policy evaluation logic in AWS Identity and Access Management? Choose 2 answers

A.
By default, all requests are denied
A.
By default, all requests are denied
Answers
B.
An explicit allow overrides an explicit deny
B.
An explicit allow overrides an explicit deny
Answers
C.
An explicit allow overrides default deny.
C.
An explicit allow overrides default deny.
Answers
D.
An explicit deny does not override an explicit allow
D.
An explicit deny does not override an explicit allow
Answers
E.
By default, all request are allowed
E.
By default, all request are allowed
Answers
Suggested answer: A, C

Explanation:

https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_evaluation-logic.htmlBy default, all requests are implicitly denied. (Alternatively, by default, the AWS account root user has full access.) An explicit allow in an identity- based or resource-based policy overrides this default.

If a permissions boundary, Organizations SCP, or session policy is present, it might override the allow with an implicit deny. An explicit deny in any policy overrides any allows.

You have an environment that consists of a public subnet using Amazon VPC and 3 instances that are running in this subnet. These three instances can successfully communicate with other hosts on the Internet. You launch a fourth instance in the same subnet, using the same AMI and security group configuration you used for the others, but find that this instance cannot be accessed from the Internet. What should you do to enable internet access?

A.
Deploy a NAT instance into the public subnet.
A.
Deploy a NAT instance into the public subnet.
Answers
B.
Modify the routing table for the public subnet
B.
Modify the routing table for the public subnet
Answers
C.
Configure a publically routable IP Address In the host OS of the fourth instance.
C.
Configure a publically routable IP Address In the host OS of the fourth instance.
Answers
D.
Assign an Elastic IP address to the fourth instance.
D.
Assign an Elastic IP address to the fourth instance.
Answers
Suggested answer: C

If a message is retrieved from a queue in Amazon SQS, how long is the message inaccessible to other users by default?

A.
0 seconds
A.
0 seconds
Answers
B.
1 hour
B.
1 hour
Answers
C.
1 day
C.
1 day
Answers
D.
forever
D.
forever
Answers
E.
30 seconds
E.
30 seconds
Answers
Suggested answer: E

Explanation:

https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-visibilitytimeout.htmlVisibility timeout:default value = 30 seconds,minimum = 0 seconds,maximum = 12 hours

What is the format of structured notification messages sent by Amazon SNS?

A.
An XML object containing MessageId, UnsubscribeURL, Subject, Message and other values
A.
An XML object containing MessageId, UnsubscribeURL, Subject, Message and other values
Answers
B.
An JSON object containing MessageId, DuplicateFlag, Message and other values
B.
An JSON object containing MessageId, DuplicateFlag, Message and other values
Answers
C.
An XML object containing MessageId, DuplicateFlag, Message and other values
C.
An XML object containing MessageId, DuplicateFlag, Message and other values
Answers
D.
An JSON object containing MessageId, unsubscribeURL, Subject, Message and other values
D.
An JSON object containing MessageId, unsubscribeURL, Subject, Message and other values
Answers
Suggested answer: D

Explanation:

https://docs.aws.amazon.com/sns/latest/dg/sns-message-and-json-formats.html#http-notificationjson

Which of the following services are key/value stores? Choose 3 answers

A.
Amazon ElastiCache
A.
Amazon ElastiCache
Answers
B.
Simple Notification Service
B.
Simple Notification Service
Answers
C.
DynamoDB
C.
DynamoDB
Answers
D.
Simple Workflow Service
D.
Simple Workflow Service
Answers
E.
Simple Storage Service
E.
Simple Storage Service
Answers
Suggested answer: A, C, E

When uploading an object, what request header can be explicitly specified in a request to Amazon S3 to encrypt object data when saved on the server side?

A.
x-amz-storage-class
A.
x-amz-storage-class
Answers
B.
Content-MD5
B.
Content-MD5
Answers
C.
x-amz-security-token
C.
x-amz-security-token
Answers
D.
x-amz-server-side-encryption
D.
x-amz-server-side-encryption
Answers
Suggested answer: D

Explanation:

https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingServerSideEncryption.html#APISupportforServer-SideEncryption

Total 608 questions
Go to page: of 61