AWS-Certified-Developer-Associate Exam Questions - Online Test


AWS-Certified-Developer-Associate Premium VCE File

Learn More 100% Pass Guarantee - Dumps Verified - Instant Download
150 Lectures, 20 Hours

certleader.com

It is more faster and easier to pass the aws certified developer associate level dumps by using aws certified developer associate level dumps. Immediate access to the aws certified developer associate level dumps and find the same core area aws certified developer associate dumps with professionally verified answers, then PASS your exam with a high score now.

Amazon AWS-Certified-Developer-Associate Free Dumps Questions Online, Read and Test Now.

NEW QUESTION 1
You are building an online store on AWS that uses SQS to process your customer orders. Your backend system needs those messages in the same sequence the customer orders have been put in. How can you achieve that?

  • A. You can do this with SQS but you also need to use SWF
  • B. Messages will arrive in the same order by default
  • C. You can use sequencing information on each message
  • D. It is not possible to do this with SQS

Answer: C

Explanation: Amazon SQS is engineered to always be available and deliver messages. One of the resulting tradeoffs is that SQS does not guarantee first in, first out delivery of messages. For many distributed applications, each message can stand on its own, and as long as all messages are delivered, the order is not important. If your system requires that order be preserved, you can place sequencing information in each message,
so that you can reorder the messages when the queue returns them. Reference:
http://docs.aws.amazon.com/AWSSimpIeQueueService/latest/SQSDeveIoperGuide/NeIcome.html

NEW QUESTION 2
When using Amazon SQS how much data can you store in a message?

  • A. 8 KB
  • B. 2 KB
  • C. 16 KB
  • D. 4 KB

Answer: A

Explanation: With Amazon SQS version 2008-01-01, the maximum message size for both SOAP and Query requests is 8KB.
If you need to send messages to the queue that are larger than 8 KB, AWS recommends that you split the information into separate messages. Alternatively, you could use Amazon S3 or Amazon Simp|eDB to hold the information and include the pointer to that information in the Amazon SQS message.
If you send a message that is larger than 8KB to the queue, you will receive a MessageTooLong error with HTTP code 400.
Reference: https://aws.amazon.com/items/1343?externaI|D=1343

NEW QUESTION 3
You have written an application that uses the Elastic Load Balancing service to spread traffic to several web servers Your users complain that they are sometimes forced to login again in the middle of using your application, after they have already togged in. This is not behavior you have designed. What is a possible solution to prevent this happening?

  • A. Use instance memory to save session state.
  • B. Use instance storage to save session state.
  • C. Use EBS to save session state
  • D. Use EIastiCache to save session state.
  • E. Use Glacier to save session slat

Answer: D

NEW QUESTION 4
In DynamoDB, could you use IAM to grant access to Amazon DynamoDB resources and API actions?

  • A. Yes
  • B. Depended to the type of access
  • C. In DynamoDB there is no need to grant access
  • D. No

Answer: A

Explanation: Amazon DynamoDB integrates with AWS Identity and Access Management (IAM). You can use AWS IAM to grant access to Amazon DynamoDB resources and API actions. To do this, you first write an AWS IAM policy, which is a document that explicitly lists the permissions you want to grant. You then attach that policy to an AWS IAM user or role.
Reference: http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/UsingIAMWithDDB.htmI

NEW QUESTION 5
A user is creating an ELB with VPC. Which of the following options is available as a part of the "Add EC2 instances" page?

  • A. Select Subnet
  • B. Select IAM
  • C. Select ENI
  • D. Select VPC

Answer: A

Explanation: When a user is launching an ELB with VPC, he/she has to select the options, such as subnet and security group before selecting the instances part of that subnet.
Reference:
http://docs.aws.amazon.com/EIasticLoadBaIancing/latest/Deve|operGuide/elb-getting-started.htmI

NEW QUESTION 6
A user has configured a bucket S3 to host a static website. What difference will there be when static website hosting is enabled?

  • A. It will help the user identify this bucket as the website root to map with the domain
  • B. It will create a new version of the bucket
  • C. It will not make any difference, but will help the user to configure the error page
  • D. It will provide the region specific website endpoint

Answer: D

Explanation: To host a static website, the user needs to configure an Amazon S3 bucket for website hosting and then upload the website contents to the bucket. The website is then available at the region-specific website endpoint of the bucket.
Reference: http://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.htmI

NEW QUESTION 7
A user is planning to host a mobile game on EC2 which sends notifications to active users on either high score or the addition of new features. The user should get this notification when he is online on his mobile device. Which of the below mentioned AWS services can help achieve this functionality?

  • A. AWS Simple Notification Service.
  • B. AWS Simple Queue Service.
  • C. AWS Mobile Communication Service.
  • D. AWS Simple Email Servic

Answer: A

Explanation: Amazon Simple Notification Service (Amazon SNS) is a fast, filexible, and fully managed push messaging service. Amazon SNS makes it simple and cost-effective to push to mobile devices, such as iPhone, iPad, Android, Kindle Fire, and internet connected smart devices, as well as pushing to other distributed services.
Reference: http://aws.amazon.com/sns

NEW QUESTION 8
A user is planning to host a scalable dynamic web application on AWS. Which of the services may not be required by the user to achieve automated scalability?

  • A. CIoudWatch
  • B. S3
  • C. AutoScaIing
  • D. AWS EC2 instances

Answer: B

Explanation: The user can achieve automated scaling by launching different EC2 instances and making them a part of an ELB. Cloudwatch will be used to monitor the resources and based on the scaling need it will trigger policies. AutoScaIing is then used to scale up or down the instances.
Reference: http://docs.aws.amazon.com/AutoScaIing/latest/DeveIoperGuide/NhatIsAutoScaIing.htmI

NEW QUESTION 9
When a user is detaching an EBS volume from a running instance and attaching it to a new instance, which of the below mentioned options should be followed to avoid file system damage?

  • A. Unmount the volume first
  • B. Stop all the I/O of the volume before processing
  • C. Take a snapshot of the volume before detaching
  • D. Force Detach the volume to ensure that all the data stays intact

Answer: A

Explanation: When a user is trying to detach an EBS volume, the user can either terminate the instance or explicitly remove the volume. It is a recommended practice to unmount the volume first to avoid any file system damage.
Reference: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-detaching-volume.html

NEW QUESTION 10
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?

  • A. Retrieve the message with an increased visibility timeout, process the message, delete the message from the queue
  • B. Retrieve the message with an increased visibility timeout, delete the message from the queue, process the message
  • C. Retrieve the message with increased DeIaySeconds, process the message, delete the message from the queue
  • D. Retrieve the message with increased DeIaySeconds, delete the message from the queue, process the message

Answer: A

NEW QUESTION 11
Which code snippet below returns the URL of a load balanced web site created in CIoudFormation with an AWS::EIasticLoadBaIancing::LoadBaIancer resource name "EIasticLoad BaIancer"?

  • A. "Fn::Join" : [ '‘'‘ . ["http://", {"Fn::GetAtr" : ["EIasticLoadBalancer","DNSName"]}]]
  • B. "Fn::Join" : [ '‘'‘ . ["http://", {"Fn::GetAtr" : ["E|asticLoadBa|ancer","Ur|"]}]]
  • C. "Fn::Join" : [ '‘'‘ . ["http://", {"Ref" : "EIasticLoadBaIancerUr|"}]]
  • D. "Fn::Join" : ["http://", {"Ref" : "EIasticLoadBaIancerDNSName"}]]

Answer: B

NEW QUESTION 12
What is the maximum time messages can be stored in SQS?

  • A. 14 days
  • B. one month
  • C. 4 days
  • D. 7 days

Answer: A

Explanation: A message can be stored in the Simple Queue Service (SQS) from 1 minute up to a maximum of 14 days. Reference: http://aws.amazon.com/sqs/faqs/#How_Iong_can_I_keep_my_messages_in_Amazon_SQS_queues

NEW QUESTION 13
An orgAMzation has created an application which is hosted on the AWS EC2 instance. The application stores images to S3 when the end user uploads to it. The orgAMzation does not want to store the AWS secure credentials required to access the S3 inside the instance. Which of the below mentioned options is a possible solution to avoid any security threat?

  • A. Use the IAM role and assign it to the instance.
  • B. Since the application is hosted on EC2, it does not need credentials to access S3.
  • C. Use the X.509 certificates instead of the access and the secret access keys.
  • D. Use the IAM based single sign between the AWS resources and the orgAMzation applicatio

Answer: A

Explanation: The AWS IAM role uses temporary security credentials to access AWS services. Once the role is assigned to an instance, it will not need any security credentials to be stored on the instance. Reference: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/iam-roles-for-amazon-ec2.html

NEW QUESTION 14
An orgAMzation has 10 departments. The orgAMzation wants to track the AWS usage of each department. Which of the below mentioned options meets the requirement?

  • A. Setup IAM groups for each department and track their usage
  • B. Create separate accounts for each department, but use consolidated billing for payment and tracking
  • C. Create separate accounts for each department and track them separately
  • D. Setup IAM users for each department and track their usage

Answer: B

Explanation: The cost of an IAM user or groups can never be tracked separately for the purpose of billing. The best solution in this case is to create a separate account for each department and use consolidated billing. Reference: http://docs.aws.amazon.com/IAM/|atest/UserGuide/|AM_|ntroduction.htmI

NEW QUESTION 15
In AWS, which security aspects are the customer’s responsibility? Choose 4 answers

  • A. Life-cycle management of IAM credentials
  • B. Decommissioning storage devices
  • C. Security Group and ACL (Access Control List) settings
  • D. Encryption of EBS (Elastic Block Storage) volumes
  • E. Controlling physical access to compute resources
  • F. Patch management on the EC2 instance’s operating system

Answer: ABCF

NEW QUESTION 16
Which of the following programming languages have an officially supported AWS SDK? Choose 2 answers

  • A. Perl
  • B. PHP
  • C. Pascal
  • D. Java
  • E. SQL

Answer: BD

NEW QUESTION 17
Can one instance be registered with two ELBs in the same region?

  • A. No
  • B. Yes, provided both ELBs have the same health check configuration
  • C. Yes, always
  • D. Yes, provided both ELBs are in the same AZ

Answer: C

Explanation: Yes, it is possible to have one instance part of two separate ELBs, though both ELBs have different configurations. ELBs are never launched in specific zones.
Reference:
http://docs.aws.amazon.com/EIasticLoadBaIancing/latest/DeveIoperGuide/enable-disable-az.html

NEW QUESTION 18
In Amazon SNS, to send push notifications to mobile devices using Amazon SNS and ADM, you need to obtain the following, except:

  • A. Client secret
  • B. Client ID
  • C. Device token
  • D. Registration ID

Answer: C

Explanation: To send push notifications to mobile devices using Amazon SNS and ADM, you need to obtain the following: Registration ID and Client secret.
Reference: http://docs.aws.amazon.com/sns/latest/dg/SNSMobiIePushPrereq.htmI

NEW QUESTION 19
How long can you keep your Amazon SQS messages in Amazon SQS queues?

  • A. From 120 secs up to 4 weeks
  • B. From 10 secs up to 7 days
  • C. From 60 secs up to 2 weeks
  • D. From 30 secs up to 1 week

Answer: C

Explanation: The SQS message retention period is configurable and can be set anywhere from 1 minute to 2 weeks. The default is 4 days and once the message retention limit is reached your messages will be automatically deleted. The option for longer message retention provides greater filexibility to allow for longer intervals between message production and consumption.
Reference: https://aws.amazon.com/sqs/faqs/

NEW QUESTION 20
When a user is launching an instance with EC2, which of the below mentioned options is not available during the instance launch console for a key pair?

  • A. Proceed without the key pair
  • B. Upload a new key pair
  • C. Select an existing key pair
  • D. Create a new key pair

Answer: B

Explanation: While launching an EC2 instance, the user can create a new key pair, select an existing key pair or proceed without a key pair. The user cannot upload a new key pair in the EC2 instance launch console. Reference: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/launching-instance.html

100% Valid and Newest Version AWS-Certified-Developer-Associate Questions & Answers shared by Surepassexam, Get Full Dumps HERE: https://www.surepassexam.com/AWS-Certified-Developer-Associate-exam-dumps.html (New 255 Q&As)