Certification Practice Test | PDF Questions | Actual Questions | Test Engine | Pass4Sure
DVA-C01 : AWS Certified Developer -Associate (DVA-C01) Exam

Amazon DVA-C01 Questions & Answers
Full Version: 445 Q&A
DVA-C01 Dumps DVA-C01 Braindumps
DVA-C01 Real Questions DVA-C01 Practice Test DVA-C01 Actual Questions
killexams.com
Amazon
DVA-C01
AWS Certified Developer -Associate (DVA-C01)
https://killexams.com/pass4sure/exam-detail/DVA-C01
Question #224 Section 2
A startup s photo-sharing site is deployed in a VPC. An ELB distributes web traffic across two subnets. ELB session stickiness is configured to use the AWS- generated session cookie, with a session TTL of 5 minutes. The webserver Auto Scaling Group is configured as: min-size=4, max-size=4.
The startups preparing for a public launch, by running load-testing software installed on a single EC2 instance running in us-west-2 After 60 minutes of load-testing, the webserver logs show:
Launch and run the load-tester EC2 instance from us-east-1 instead. Re-configure the load-testing software to re-resolve DNS for each web request. Use a 3rd-party load-testing service which offers globally-distributed test clients. Configure ELB and Auto Scaling to distribute across us-west-2a and us-west-2c. Configure ELB session stickiness to use the app-specific session cookie. Question #225 Section 2 A development team uses AWS Elastic Beanstalk to deploy a Java-based web application. The team wants to ensure that the changes to the source code and the configuration are always deployed on new instances. The team configures the Elastic Beanstalk environment to use immutable updates. However, an error occurs the first time a change is deployed with the new update policy. What is the MOST likely cause of this issue? Immutable updates are not supported for Java-based applications. The account has reached its on-demand instance limit. Immutable updates are only supported for m4.large and larger instance types. https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environmentmgmt-updates-immutable.html Question #226 Section 2 A developer tested an application locally and then deployed it to AWS Lambda. While testing the application remotely, the Lambda function fails with an access denied message. How can this issue be addressed? Update the Lambda function's execution role to include the missing permissions. Update the Lambda function's resource policy to include the missing permissions. Include an IAM policy document at the root of the deployment package and redeploy the Lambda function. Redeploy the Lambda function using an account with access to the AdministratorAccess policy. https://aws.amazon.com/premiumsupport/knowledge-center/access-denied-lambda-s3-bucket/ Question #227 Section 2 An application contains two components: one component to handle HTTP requests, and another component to handle background processing tasks. Each component must scale independently. The developer wants to deploy this application using AWS Elastic Beanstalk. How should this application be deployed, based on these requirements? Deploy the application in a single Elastic Beanstalk environment. Deploy each component in a separate Elastic Beanstalk environment. Question #228 Section 2 A company experienced partial downtime during the last deployment of a new application. AWS Elastic Beanstalk split the environment's Amazon EC2 instances into batches and deployed a new version one batch at a time after taking them out of service. Therefore, full capacity was not maintained during deployment. The developer plans to release a new version of the application, and is looking for a policy that will maintain full capacity and minimize the impact of the failed deployment. Which deployment policy should the developer use? Immutable https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features.rolling-version-deploy.html Question #229 Section 2 An application running on multiple Amazon EC2 instances pulls messages from a standard Amazon SQS queue. A requirement for the application is that all messages must be encrypted at rest. Developers are instructed to use methods that allow for centralized key management and minimize possible support requirements whenever possible. Which of the following solutions supports these requirements? Encrypt individual messages by using client-side encryption with customer managed keys, then write to the SQS queue. Encrypt individual messages by using SQS Extended Client and the Amazon S3 encryption client. Create an SQS queue, and encrypt the queue by using sewer-side encryption with AWS KMS. Create an SQS queue, and encrypt the queue by using client-side encryption. Question #230 Section 2 A company is developing a serverless ecommerce web application. The application needs to make coordinated, all-or-nothing changes to multiple items in the company's inventory table in Amazon DynamoDB. Which solution will meet these requirements? Enable transactions for the DynamoDB table. Use the BatchWriteItem operation to update the items. Use the TransactWriteItems operation to group the changes. Update the items in the table. https://aws.amazon.com/blogs/mobile/appsync-caching-transactions/ Question #231 Section 2 How can a developer use a debugger for AWS Lambda code that is deployed with AWS Serverless Application Model (AWS SAM)? Download the Lambda code locally and use the AWS CLI to execute it Use the Lambda console to connect the debugger https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-cli-using-debugging.html Question #232 Section 2 An application takes longer than expected to process an Amazon SQS message. What should the developer do to the application so that other instances do not pick up the same message? Make a ReceiveMessage call to get the same message again from the queue Issue a DeleteMessage call to delete the message from the queue Use SendMessage to pass the message to the dead letter queue Send a ChangeMessageVisibility call to extend VisibilityTimeout Question #233 Section 2 A developer is building a WebSocket API using Amazon API Gateway. The payload sent to this API is JSON that includes an action key. This key can have three different values: create, update, and remove. The developer must integrate with different routes based on the value of the action key of the incoming JSON payload. How can the developer accomplish this task with the LEAST amount of configuration? Deploy the WebSocket API to three stages for the respective routes: create, update, and remove Create a new route key and set the name as action Set the value of the route selection expression to action Set the value of the route selection expression to $request.body.action Question #234 Section 2 A development team is creating a new application designed to run on AWS. While the test and production environments will run on Amazon EC2 instances, developers will each run their own environment on their laptops. Which of the following is the simplest and MOST secure way to access AWS services from the local development machines? Use an IAM role to assume a role and execute API calls using the role. Create an IAM user to be shared with the entire development team; provide the development team with the access key. Create an IAM user for each developer on the team; provide each developer with a unique access key. Question #235 Section 2 A developer wants to ensure the Amazon EC2 instances in AWS Elastic Beanstalk execute a certain set of commands before the application is ready to use. Which Elastic Beanstalk feature will allow the developer to accomplish this? Rolling update https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/customize-containers-ec2.html Question #236 Section 2 A developer is planning to use an Amazon API Gateway and AWS Lambda to provide a REST API. The developer will have three distinct environments to manage: development, test, and production. How should the application be deployed while minimizing the number of resources to manage? Create a separate API Gateway and separate Lambda function for each environment in the same Region. Assign a Region for each environment and deploy API Gateway and Lambda to each Region. Create one API Gateway with multiple stages with one Lambda function with multiple aliases. https://aws.amazon.com/blogs/compute/using-api-gateway-stage-variables-to-manage-lambda-functions/ Question #237 Section 2 A developer is creating an application to process a large number of requests. Requests must be processed in order, and each request should be processed only once. How should Amazon SQS be deployed to achieve this? Configure First in First out (FIFO) delivery in a standard Amazon SQS queue to process requests. Use an SQS FIFO queue to process requests. Use the SetOrder attribute to ensure sequential request processing. Convert the standard queue to a FIFO queue by renaming the queue to use the .fifo suffix. https://medium.com/awesome-cloud/aws-difference-between-sqs-standard-and-fifo-first-in-first-out-queues-28d1ea5e153
Answer: BE
Answer: D Reference:
Answer: A Reference:
Answer: D
Answer: D Reference:
Answer: B
Answer: B Reference:
Answer: C Reference:
Answer: A
Answer: B
Answer: D
Answer: D Reference:
Answer: C Reference:
Answer: B Reference:
User: Liev*****
If you are looking for high-quality dva-c01 practice tests, Killexams.com is the ultimate choice. I was proven wrong about the usefulness of dva-c01 practice tests because Killexams.com provided me with excellent practice tests that helped me score high on the exam. If you are also worried about dva-c01 practice tests, you can trust Killexams.com.
User: Advik*****
Before I even enrolled in the killexams.com software, I had given the dva-c01 practice questions my best shot. However, even after spending enough time studying, I still felt unsatisfied and did not know what was missing. It was not until I joined killexams.com that I realized what I lacked - dva-c01 practice books. They put everything in the right direction, making preparation for dva-c01 with dva-c01 time questions truly convincing. The different training books that I had previously used were helpful, but they were not successful in passing the dva-c01 questions as they did not cover the complete syllabus. The killexams.com designed books are exquisite and helped me score 96% in dva-c01 certification.
User: Mathias*****
I feel confident during exams now that I have Killexams.com as my exam companion. The instructors are always available to guide me, and their support is invaluable. I am grateful to the lecturers for being so great and pleasant and helping me pass my tough dva-c01 exam. Their exam simulator is also awesome.
User: Pihu*****
If you want to ace your online dva-c01 exams, then the easiest way to do so is by using Killexams.com and its dva-c01 exam practice papers. These papers are a real representation of the final dva-c01 exam, and using them will boost your confidence. I achieved 95% on the final exam, thanks to Killexams.com. It is a product designed for those who want to excel in their careers and do something extraordinary.
User: Viktor*****
Finally, I want to express my sincere gratitude to Killexams.com for their practice tests and Exam Simulator. I passed the exam with 84% marks within the stipulated time. It is challenging to study for a certification exam while working full-time, but Killexams.com made it possible for me. I decided to take the DVA-C01 exam to advance my career, and I am glad that I did.
Features of iPass4sure DVA-C01 Exam
Premium PDF with 445 Q&A
Get Full VersionAll Amazon Exams
Amazon ExamsCertification and Entry Test Exams
Complete exam list