Cookie Consent by Free Privacy Policy Generator ๐Ÿ“Œ AWS Developer Associate DVA study guide

๐Ÿ  Team IT Security News

TSecurity.de ist eine Online-Plattform, die sich auf die Bereitstellung von Informationen,alle 15 Minuten neuste Nachrichten, Bildungsressourcen und Dienstleistungen rund um das Thema IT-Sicherheit spezialisiert hat.
Ob es sich um aktuelle Nachrichten, Fachartikel, Blogbeitrรคge, Webinare, Tutorials, oder Tipps & Tricks handelt, TSecurity.de bietet seinen Nutzern einen umfassenden รœberblick รผber die wichtigsten Aspekte der IT-Sicherheit in einer sich stรคndig verรคndernden digitalen Welt.

16.12.2023 - TIP: Wer den Cookie Consent Banner akzeptiert, kann z.B. von Englisch nach Deutsch รผbersetzen, erst Englisch auswรคhlen dann wieder Deutsch!

Google Android Playstore Download Button fรผr Team IT Security



๐Ÿ“š AWS Developer Associate DVA study guide


๐Ÿ’ก Newskategorie: Programmierung
๐Ÿ”— Quelle: dev.to

  1. Exam Details The AWS Certified Developer โ€“ Associate (DVA) certification is made up of scenario-based questions that are either multiple-choice or multiple-response. The former has only one correct answer whilst the latter can have two or more correct responses out of five or more options. Take extra care when reading the question to determine which of the two question types you are being presented with as this can be a common tripping point for candidates.
  • Exam code DVA-C02
  • Number of questions 65
  • Score range 100-1000
  • Passing score 720/1000
  • Time Limit 2 hours 10 minutes (130 minutes)[]
  • Format Scenario-based - Multiple choice/Multiple response

1.2.Exam domains
The DVA exam can be broken down into 4 different domains. Each domain has a corresponding weight and topic coverage. This breakdown can be seen in Figure 1:

Image description

Figure 1 - Breakdown of the 4 different domains for the DVA exam
Domain 1: Development with AWS Services (32%)
1.1 Develop code for applications hosted on AWS
1.2 Develop code for AWS Lambda
1.3 Use data stores in application development.
1.4 Deploy serverless applications

Domain 2: Security (26%)
2.1 Implement authentication and/or authorization for applications and AWS services.
2.2 Implement encryption by using AWS services.
2.3 Manage sensitive data in application code.

Domain 3: Deployment (24%)
3.1 Prepare application artifacts to be deployed to AWS.
3.2 Test applications in development environments.
3.3 Automate deployment testing
3.4 Deploy code by using AWS CI/CD services.

Domain 4: Troubleshooting and Optimization
(18%)
4.1 Assist in a root cause analysis.
4.2 Instrument code for observability.
4.3 Optimize applications by using AWS services and features.

1.3.Exam scoring system
A minimum scaled score of 720 is needed to pass the DVA exam with the range of scores being 100-1000. Immediately upon completing the exam a pass or fail notification will be show on the testing application.
A complete score report is sent to the email address that was registered within 5 business days. The score report contains a breakdown of your performance over the 4 domains by way of either meeting competency or not.

2.Study Materials

2.1.Resources

Table 2 - Collation of study material relating to the DVA exam with hyperlinks

**Description **Priority Type Cost
Cloud Academy - AWS Developer โ€“ Associate (DVA-C02) Certification Preparation Highly Recommended Video Course Free for Community Builder
A Cloud Guru - AWS Certified Developer - Associate Recommended Video Course Free with A Cloud Guru subscription
Udemy Course - AWS DVA by Stephane Maarek Recommended Video Course Paid
Tutorials Dojo Jon Bonso - AWS Certified DVA - Practice Exams Recommended Practice Exam Paid
Whizlab - CDVA Practice Tests Optional Practice Exam Paid
Exam Readiness: AWS Certified Developer โ€“ Associate (Digital) Recommended Practice Exam Paid
AWS SkillBuilder AWS Certified Developer - Associate Official Practice Question Set (DVA-C02 - English) Recommended Practice Exam Free
AWS โ€“ Official Exam Study Guide Recommended Supplementary Free
Tutorial Dojo - Cheat Sheets Optional Supplementary Free
Neil Davis - Cheat Sheets Optional Supplementary Free
AWS Whitepapers, FAQ, Documentation Optional Supplementary Free

3.Common Exam Scenarios

Scenario Solution

  • Domain 1: Development with AWS Services
  • Uploaded large files to S3 (over 4GB), how do you minimize upload time? Multipart upload API.
  • Unresponsive MySQL RDS database. How do you collect all SQL statements that took longer to execute for troubleshooting? Enable slow query log in RDS.
  • Provides a time-ordered sequence of item level changes in any DynamoDB table DynamoDB Streams.
  • Using AWS Lambda to process records in a Kinesis Data streams that has 100 active shards. The Lambda function takes around 10 seconds to process the data, and the stream is receiving 50 new items per second. What can you say about the number of concurrent Lambda functions? There will be at most 100 Lambda functions (as 100 shards).
  • Slow log in times for users in your web app hosted behind a CloudFront distribution. Use Lambda@Edge to execute the authentication process closer to the user.
  • How do you reuse the same Lambda function for multiple stages of your API but pass in different variables depending on the stage? Use stage variables.
  • Record events in an SWF Workflow execution. Use markers.
  • Consistency that DynamoDB global secondary indexes support. Eventual consistency only.
  • AWS Service for defining IaC specific to serverless services. AWS SAM.
  • Can APIs that are created with API Gateway support http? No, all APIs created by Amazon API Gateway expose HTTPS endpoints only.
  • Enable cross-device syncing of user profile data in a mobile game? Cognito Sync
  • How could you increase the capacity of an Amazon Kinesis Data Stream? Split every shard in the stream
  • High number of read operations in an RDS database which affects the website's performance, quickly resolve the issue with minimal cost and code change Create an RDS Read Replica instance and configure the application to use this for read queries
  • Which configuration file should the developer add in the source bundle to define periodic jobs to automatically add jobs to your Elastic Beanstalk worker environment's queue at a regular interval cron.yaml
  • Improve an applicationโ€™s performance by reducing a DynamoDB databaseโ€™s response times down to microseconds Use Amazon DynamoDB Accelerator (DAX)
  • Domain 2: Security
  • Serverless app is composed of several Lambdas reading from RDS. These functions must share the same connection string that should be encrypted to improve data security. Create a Secure String Parameter using the AWS Systems Manager Parameter store.
  • Request header to use to enforce S3 server-side encryption. x-amz-server-side-encryption.
  • Safest way to grant an application hosted in EC2 permission to upload data to S3 Use an IAM Role to grant the application the necessary permissions.
  • Using API Gateway Lambda Authorizer to provide authentication for every API request. What method should be used to implement authentication like SAML or OAuth. Token-Based Authorization.
  • Describe the process of envelope encryption for encryption keys. Encrypt plaintext data with a data key, then encrypt the data key with a top-level plaintext master key.
  • In the AppSpec file in CodeDeploy, which deployment lifecycle event allows you to run a task before the traffic is shifted to the deployed app? BeforeAllowTraffic.
  • When managing a companyโ€™s IAM resources, what are some best practices in managing security? Grant only the permissions required by the resource to perform a task, and delete root user access keys.
  • 2 services that can be used to safely import a SSL/TLS certificate. AWS Certificate Manager and IAM certificate store.
  • Most appropriate service to store RDS database credentials, where they will be encrypted and rotated on a regular basis? AWS Secrets Manager (allows automatic rotation).
  • How can you improve the performance of an RDS database whose performance slows down whenever there is a surge in requests that use the same SQL read queries? Create Read Replicas
  • Implement database caching using ElastiCache
  • The average time that it takes for producers to send a new message to a Standard SQS queue is 40 seconds. Which polling setting is the most efficient way for the application to query the new messages from the queue? Long Polling
  • Domain 3: Deployment
  • Internal Web App on EC2 instances need to access an S3 Bucket. Create a VPC endpoint for S3.
  • Deployment to Lambda function using CodeDeploy, need to shift 10% of traffic to new version in the first increment and the other 90% 5 minutes later. Canary Deployment.
  • You want to deploy a serverless app using CloudFormation, the AWS SAM syntax should be used to declare resources. Include the Transform section in CloudFormation specifying the version of SAM to use.
  • Amount of RCUs for a DynamoDB table, each data has an average size of 3.5KB and will send 150 eventually consistent reads per second. 75. (each read does up to 4KB per RCU, so 1 per data = 150 RCU. Divide by 2 as the reads are eventually consistent)
  • Application that will be hosted in an ECS cluster, tasks must be placed based on the least available amount of CPU or memory. Use the binpack placement strategy.
  • A developer is instructed to set up a new serverless architecture. The new architecture should allow the developer to locally build, test, and debug serverless applications. Use AWS Serverless Application Model (AWS SAM).
  • A developer will do iterative tests on an app hosted on Elastic Beanstalk and therefore needs to deploy code changes and view them as quickly as possible. Use All at Once Deployment.
  • Deploy a update to an app hosted on EC2 instances, the update needs to be on a new set of instances. Immutable deployment.
  • CloudFormation helper script to install packages, create files and start services. cfn-init
  • Domain 4:Troubleshooting and Optimization
  • How can you capture information about the IP traffic going to and from network interfaces in your VPC? Create a flow log in your VPC.
  • A service to trace and analyse user requests as they go through an Amazon API Gateway API and eventually through to the underlying services in an application AWS X-Ray
  • What is the lifetime of all data in a DynamoDB Stream? 24 hours
  • How can you ensure that all of the API calls to your AWS resources are logged and stored? Use CloudTrail
  • True or False: By default, you can see the CPU utilization of EC2 instances but not the memory utilization? True โ€“ CloudWatch does not track memory utilization by default.
  • (Install a CloudWatch agent in your EC2 instances to track memory utilization.)
  • You need to manually increase the current number of instances to 20 to prepare for a temporary influx of requests, which Auto Scaling group option will you set to 20? Desired capacity
  • Which of the following services should you implement to mitigate SQL injection attempts and cross-site scripting attacks? AWS WAF

3.2.Commonly Compared Services
Below is a list of service comparisons that regularly appear in the exam. It is important to know the key features of each of these services and how they differ from each other.

  • ๏‚ทS3 vs EBS vs EFS
  • ๏‚ทS3 vs Glacier
  • ๏‚ทS3 Standard vs S3 Standard-IA vs S3 One Zone-IA vs S3 Intelligent Tiering
  • ๏‚ทAWS DataSync vs Storage Gateway
  • ๏‚ทRDS vs DynamoDB
  • ๏‚ทRDS vs Aurora
  • ๏‚ทAWS CloudTrail vs CloudWatch
  • ๏‚ทSecurity Group vs NACL
  • ๏‚ทEBS-SSD vs HDD
  • ๏‚ทElastic Beanstalk vs CloudFormation vs OpsWorks vs CodeDeploy
  • ๏‚ทGlobal Secondary Index vs Local Secondary Index
  • ๏‚ทS3 Pre-Signed URLS vs CloudFront Signed URLS vs Origin Access Identity
  • ๏‚ทCloudWatch Agent vs SSM Agent vs Custom Daemon Scripts
  • ๏‚ทAmazon SWF vs AWS Step Functions vs Amazon SQS
  • ๏‚ทApplication vs Network vs Classic vs Gateway Load Balancers
  • ๏‚ทS3 Transfer Acceleration vs Direct Connect vs VPN vs Snowball Edge vs Snowmobile
  • ๏‚ทEC2 Container Services ECS vs Lambda
  • ๏‚ทSNI Custom SSL vs Dedicated IP Custom SSL
  • ๏‚ทEC2 Instance Health Check vs ELB Health Check vs Auto Scaling and Custom Health Check
  • ๏‚ทMulti-AZ deployments vs Multi-Region deployments vs Read Replicas

Note: Exam Registration:
If English is your second language, you can request for ESL+30 mins before booking the exam fromย certmetricsย > Request Exam Accomodations and wait for the approval. Once it is approved, this will apply to all AWS existing exams.

Good Luck for your coming exams!

...



๐Ÿ“Œ AWS Developer Associate DVA study guide


๐Ÿ“ˆ 79.48 Punkte

๐Ÿ“Œ Key Concepts for Passing the AWS Certified Developer โ€” Associate (DVA-C02) Exam


๐Ÿ“ˆ 64.08 Punkte

๐Ÿ“Œ LFCA Exam Study Guide (Linux Foundation Certified IT Associate) Study Guide


๐Ÿ“ˆ 50.95 Punkte

๐Ÿ“Œ 5 Great Study Tools for Your Amazon AWS Certified Solutions Architect Associate Exam Preparation. When Refer to Practice Tests?


๐Ÿ“ˆ 36.62 Punkte

๐Ÿ“Œ DevSecOps with AWS โ€“ ChatOps with AWS and AWS Developer Tools โ€“ Part 1


๐Ÿ“ˆ 29.6 Punkte

๐Ÿ“Œ D-Link DVA-5592 A1_WI_20180823 Control Panel /ui/cbpc/login PIN privilege escalation


๐Ÿ“ˆ 29.24 Punkte

๐Ÿ“Œ D-Link DVA-5592 20180823 information disclosure [CVE-2019-6969]


๐Ÿ“ˆ 29.24 Punkte

๐Ÿ“Œ D-Link DVA-5592 20180823 Web Interface Parameter Reflected cross site scripting


๐Ÿ“ˆ 29.24 Punkte

๐Ÿ“Œ D-Link DVA-2800/DSL-2888A 2.3 dhttpd authentication bypass


๐Ÿ“ˆ 29.24 Punkte

๐Ÿ“Œ D-Link DVA-2800/DSL-2888A 2.3 dhttpd path command injection


๐Ÿ“ˆ 29.24 Punkte

๐Ÿ“Œ Java Certified Foundations Associate 1Z0-811 Preparation Study Plan


๐Ÿ“ˆ 29.16 Punkte

๐Ÿ“Œ Beginners: How to get the AWS Solutions Architect Associate certification


๐Ÿ“ˆ 27.61 Punkte

๐Ÿ“Œ How I passed the AWS Certified SysOps Administrator - Associate exam


๐Ÿ“ˆ 27.61 Punkte

๐Ÿ“Œ I failed the AWS Solutions Architect Associate exam, so what?!


๐Ÿ“ˆ 27.61 Punkte

๐Ÿ“Œ AWS Certified Solutions Architect - Associate


๐Ÿ“ˆ 27.61 Punkte

๐Ÿ“Œ AWS Certified Solutions Architect - Associate


๐Ÿ“ˆ 27.61 Punkte

๐Ÿ“Œ AWS Certified Solutions Architect โ€“ Associate 2018


๐Ÿ“ˆ 27.61 Punkte

๐Ÿ“Œ My Journey to Passing the AWS Certified Solutions Architect Associate Exam


๐Ÿ“ˆ 27.61 Punkte

๐Ÿ“Œ Zinnia Interview Experience for Associate Software Developer (On-Campus)


๐Ÿ“ˆ 27.38 Punkte

๐Ÿ“Œ Updated Udacity Android course prepares students for the Associate Android Developer Certification


๐Ÿ“ˆ 27.38 Punkte

๐Ÿ“Œ Updated Udacity Android course prepares students for the Associate Android Developer Certification


๐Ÿ“ˆ 27.38 Punkte

๐Ÿ“Œ Updated Udacity Android course prepares students for the Associate Android Developer Certification


๐Ÿ“ˆ 27.38 Punkte

๐Ÿ“Œ Updated Udacity Android course prepares students for the Associate Android Developer Certification


๐Ÿ“ˆ 27.38 Punkte

๐Ÿ“Œ Introducing Associate Android Developer Certification by Google


๐Ÿ“ˆ 27.38 Punkte

๐Ÿ“Œ 10 Highest-paying associate degree options: Your complete guide


๐Ÿ“ˆ 26.54 Punkte

๐Ÿ“Œ Mastering MongoDB Associate Data Modeling Exam: The Ultimate Guide


๐Ÿ“ˆ 26.54 Punkte

๐Ÿ“Œ My AWS DevOps Engineer Professional Study Guide


๐Ÿ“ˆ 22.86 Punkte

๐Ÿ“Œ Man who hacked jail systems to free associate sent behind bars


๐Ÿ“ˆ 20.15 Punkte

๐Ÿ“Œ Arjen Kamphuis, the Dutch associate of Julian Assange, went missing in Norway


๐Ÿ“ˆ 20.15 Punkte

๐Ÿ“Œ TIL There was a X11 System Tray called Docker, now the name we associate with Containers


๐Ÿ“ˆ 20.15 Punkte

๐Ÿ“Œ Microsoft Technology Associate: Microsofts Einsteigerschulungen laufen aus


๐Ÿ“ˆ 20.15 Punkte

๐Ÿ“Œ Devising Defenses to One of Your Top Security Threats: Business Associate Impostor Emails


๐Ÿ“ˆ 20.15 Punkte

๐Ÿ“Œ The only Linux system that manages to infuriate me on a regular basis, the joys of being a dollar general sales associate


๐Ÿ“ˆ 20.15 Punkte











matomo