没有合适的资源?快使用搜索试试~ 我知道了~
首页DVA-C01.CDA.475Q.V21.66.AWS-Developer-Associate.pdf
DVA-C01.CDA.475Q.V21.66.AWS-Developer-Associate.pdf
需积分: 20 169 浏览量
更新于2023-05-27
评论
收藏 2.23MB PDF 举报
AWS developer-Associate 题库 - Fixed some wrong answers, updated date Oct, 2019 黄色 为修改过的答案
资源详情
资源评论
资源推荐

Vendor: Amazon
Exam Code: AWS-Developer-Associate
Exam Name: AWS Certified Developer - Associate 2019
(DVA-C01)
Version: 21.66

QUESTION 1
A user plans to use RDS as a managed DB platform. Which of the below mentioned features is
not supported by RDS?
A.
Automated backup
B.
Automated scaling to manage a higher load
C.
Automated failure detection and recovery
D.
Automated software patching
Answer: B
Explanation:
AWS RDS provides a managed DB platform, which offers features, such as automated backup,
patch management, automated failure detection and recovery.
The scaling is not automated and the user needs to plan it with a few clicks.
http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Welcome.html
QUESTION 2
A user has not enabled versioning on an S3 bucket. What will be the version ID of the object
inside that bucket?
A.
0
B.
There will be no version attached
C.
Null
D.
Blank
Answer: C
Explanation:
S3 objects stored in the bucket before the user has set the versioning state have a version ID of
null. When the user enables versioning, the objects in the bucket do not change and their ID
remains null.
http://docs.aws.amazon.com/AmazonS3/latest/dev/AddingObjectstoVersionSuspendedBuckets.ht
ml
QUESTION 3
A user has created a queue named "myqueue" with SQS. There are four messages published to
queue which are not received by the consumer yet. If the user tries to delete the queue, what will
happen?
A.
A user can never delete a queue manually. AWS deletes it after 30 days of inactivity on queue
B.
It will initiate the delete but wait for four days before deleting until all messages are deleted
automatically.
C.
It will ask user to delete the messages first
D.
It will delete the queue
Answer: D
Explanation:
SQS allows the user to move data between distributed components of applications so they can
perform different tasks without losing messages or requiring each component to be always
available. The user can delete a queue at any time, whether it is empty or not. It is important to
note that queues retain messages for a set period of time. By default, a queue retains messages
for four days.
http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/SQSConcept

s.html
QUESTION 4
What happens if your application performs more reads or writes than your provisioned capacity?
A.
Nothing
B.
requests above your provisioned capacity will be performed but you will receive 400 error
codes.
C.
requests above your provisioned capacity will be performed but you will receive 200 error
codes.
D.
requests above your provisioned capacity will be throttled and you will receive 400 error codes.
Answer: D
Explanation:
Speaking about DynamoDB, if your application performs more reads/second or writes/second
than your table's provisioned throughput capacity allows, requests above your provisioned
capacity will be throttled and you will receive 400 error codes.
QUESTION 5
In relation to Amazon SQS, how can you ensure that messages are delivered in order?
A.
Increase the size of your queue
B.
Send them with a timestamp
C.
Give each message a unique id.
D.
AWS cannot guarantee that you will receive messages in the exact order you sent them
Answer: D
Explanation:
Amazon SQS makes a best effort to preserve order in messages, but due to the distributed
nature of the queue, AWS cannot guarantee that you will receive messages in the exact order
you sent them. You typically place sequencing information or timestamps in your messages so
that you can reorder them upon receipt.
https://aws.amazon.com/items/1343?externalID=1343
QUESTION 6
An organization has launched two applications: one for blogging and one for ECM on the same
AWS Linux EC2 instance running in the AWS VPC. The organization has attached two private
IPs (primary and secondary) to the above mentioned instance. The organization wants the
instance OS to recognize the secondary IP address. How can the organization configure this?
A.
Use the ec2-net-utility package which updates routing tables, uses DHCP to refresh the
secondary IP and adds the network interface.
B.
Use the ec2-net-utils package which will configure an additional network interface and update
the routing table
C.
Use the ec2-ip-update package which can configure the network interface as well as update the
secondary IP with DHCP.
D.
Use the ec2-ip-utility package which can update the routing tables as well as refresh the
secondary IP using DHCP.
Answer: B
Explanation:

A Virtual Private Cloud (VPC) is a virtual network dedicated to the user's AWS account. It enables
the user to launch AWS resources into a virtual network that the user has defined. With VPC the
user can specify multiple private IP addresses for his instances. The number of network
interfaces and private IP addresses that a user can specify for an instance depends on the
instance type. This scenario helps when the user wants to host multiple websites on a single EC2
instance. After the user has assigned a secondary private IP address to his instance, he needs to
configure the operating system on that instance to recognize the secondary private IP address.
For AWS Linux, the ec2-net-utils package can take care of this step. It configures additional
network interfaces that the user can attach while the instance is running, refreshes secondary IP
addresses during DHCP lease renewal, and updates the related routing rules.
http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/MultipleIP.html
QUESTION 7
What kind of service is provided by AWS DynamoDB?
A.
Relational Database
B.
NoSQL Database
C.
Dynamic Database
D.
Document Database
Answer: B
Explanation:
DynamoDB is a fast, fully managed NoSQL database service.
http://aws.amazon.com/dynamodb/
QUESTION 8
In relation to Amazon SQS, how many queues and messages can you have per queue for each
user?
A.
Unlimited
B.
10
C.
256
D.
500
Answer: A
Explanation:
Amazon SQS supports an unlimited number of queues and unlimited number of messages per
queue for each user. Please be aware that Amazon SQS automatically deletes messages that
have been in the queue for more than 4 days.
https://aws.amazon.com/items/1343?externalID=1343
QUESTION 9
Doug has created a VPC with CIDR 10.201.0.0/16 in his AWS account. In this VPC he has
created a public subnet with CIDR block 10.201.31.0/24. While launching a new EC2 from the
console, he is not able to assign the private IP address 10.201.31.6 to this instance. Which is the
most likely reason for this issue?
A.
Private IP address 10.201.31.6 is not part of the associated subnet's IP address range.
B.
Private IP address 10.201.31.6 is blocked via ACLs in Amazon infrastructure as a part of
platform security.
C.
Private address IP 10.201.31.6 is currently assigned to another interface.

D.
Private IP address 10.201.31.6 is reserved by Amazon for IP networking purposes.
Answer: C
Explanation:
In Amazon VPC, you can assign any Private IP address to your instance as long as it is:
Part of the associated subnet's IP address range
Not reserved by Amazon for IP networking purposes
Not currently assigned to another interface
http://aws.amazon.com/vpc/faqs/
QUESTION 10
Regarding Amazon SQS, are there restrictions on the names of Amazon SQS queues?
A.
No
B.
Yes. Queue names must be unique within an AWS account and you cannot use hyphens (-)
and underscores (_)
C.
Yes. Queue names are limited to 80 characters and queue names must be unique within an
AWS account
D.
Yes. Queue names are limited to 80 characters but queue names do not need to be unique
within an AWS account
Answer: C
Explanation:
Queue names are limited to 80 characters. Alphanumeric characters plus hyphens (-) and
underscores (_) are allowed. Queue names must be unique within an AWS account.
After you delete a queue, you can reuse the queue name.
https://aws.amazon.com/sqs/faqs/
QUESTION 11
A user is planning to host a web server as well as an app server on a single EC2 instance which
is a part of the public subnet of a VPC. How can the user setup to have two separate public IPs
and separate security groups for both the application as well as the web server?
A.
Launch a VPC instance with two network interfaces. Assign a separate security group to each
and AWS will assign a separate public IP to them.
B.
Launch VPC with two separate subnets and make the instance a part of both the subnets.
C.
Launch a VPC instance with two network interfaces. Assign a separate security group and
elastic IP to them.
D.
Launch a VPC with ELB such that it redirects requests to separate VPC instances of the public
subnet.
Answer: C
Explanation:
If you need to host multiple websites(with different IPs) on a single EC2 instance, the following is
the suggested method from AWS.
Launch a VPC instance with two network interfaces
Assign elastic IPs from VPC EIP pool to those interfaces (Because, when the user has attached
more than one network interface with an instance, AWS cannot assign public IPs to them.) Assign
separate Security Groups if separate Security Groups are needed This scenario also helps for
operating network appliances, such as firewalls or load balancers that have multiple private IP
addresses for each network interface.
http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/MultipleIP.html
剩余150页未读,继续阅读




安全验证
文档复制为VIP权益,开通VIP直接复制

评论0