Pre-Summer Sale Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 65pass65

AWS-Certified-Developer-Associate AWS Certified Developer Associate Exam (DVA-C02) is now Stable and With Pass Result | Test Your Knowledge for Free

Exams4sure Dumps

AWS-Certified-Developer-Associate Practice Questions

AWS Certified Developer Associate Exam (DVA-C02)

Last Update 5 days ago
Total Questions : 368

Dive into our fully updated and stable AWS-Certified-Developer-Associate practice test platform, featuring all the latest AWS Certified Developer Associate exam questions added this week. Our preparation tool is more than just a Amazon study aid; it's a strategic advantage.

Our free AWS Certified Developer Associate practice questions crafted to reflect the domains and difficulty of the actual exam. The detailed rationales explain the 'why' behind each answer, reinforcing key concepts about AWS-Certified-Developer-Associate. Use this test to pinpoint which areas you need to focus your study on.

AWS-Certified-Developer-Associate PDF

AWS-Certified-Developer-Associate PDF (Printable)
$52.5
$150

AWS-Certified-Developer-Associate Testing Engine

AWS-Certified-Developer-Associate PDF (Printable)
$70
$200

AWS-Certified-Developer-Associate PDF + Testing Engine

AWS-Certified-Developer-Associate PDF (Printable)
$104.65
$299
Question # 21

A company's fleet of Amazon EC2 instances receives data from millions of users through an API. The servers batch the data, add an object for each user, and upload the objects to an S3 bucket to ensure high access rates The object attributes are Customer ID, Server ID, TS-Server (TimeStamp and Server ID) the size of the object, and a timestamp A developer wants to find all the objects for a given user collected during a specified time range

After creating an S3 object created event, how can the developer achieve this requirement^

Options:

A.  

Execute an AWS Lambda function in response to the S3 object creation events that creates an Amazon DynamoDB record for every object with the Customer ID as the partition key and the Server ID as the sort key Retrieve all the records using the Customer ID and Server ID attributes

B.  

Execute an AWS Lambda function in response to the S3 object creation events that creates an Amazon Redshift record for every object with the Customer ID as the partition key and TS-Server as the sort key Retrieve all the records using the Customer ID and TS-Server attributes

C.  

Execute an AWS Lambda function in response to the S3 object creation events that creates an Amazon DynamoDB record for every object with the Customer ID as the partition key and TS-Server as the sort key Retrieve all the records using the Customer ID and TS-Server attributes

D.  

Execute an AWS Lambda function in response to the S3 object creation events that creates an Amazon Redshift record for every object with the Customer ID as the partition key and the Server ID as the sort key. Retrieve all the records using the Customer ID and Server ID attributes.

Discussion 0
Question # 22

A developer uses Amazon S3 buckets for static website hosting. The developer creates one S3 bucket for the code and another S3 bucket for the assets, such as image and video files. Access is denied when a user attempts to access the assets bucket from the code bucket, with the website application showing a 403 error

How should the developer solve this issue?

Options:

A.  

Create an IAM role and apply it to the assets bucket for the code bucket to be granted access

B.  

Edit the bucket policy of the assets bucket to open access to all principals

C.  

Edit the cross-origin resource sharing (CORS) configuration of the assets bucket to allow any origin to access the assets

D.  

Change the code bucket to use AWS Lambda functions instead of static website hosting.

Discussion 0
Question # 23

A three-tier application hosted on AWS uses Amazon RDS for MYSQL as its database. A developer must ensure the database credentials are stored and accessed securely.

What is the MOST secure way for the developer to achieve this?

Options:

A.  

Store the credentials in a configuration file and commit it to the GIT repository.

B.  

Store the credentials in AWS Secrets Manager and enable automatic secret rotation.

C.  

Store the credentials using Amazon RDS and enable automatic rotation

D.  

Store the credentials in code and handle credentials rotation within the application.

Discussion 0
Question # 24

A development team decides to adopt a continuous integration/continuous delivery (CI/CD) process using AWS CodePipehne and AWS CodeCommit for a new application. However, management wants a person to review and approve the code before it is deployed to production

How can the development team add a manual approver to the CI/CD pipeline?

Options:

A.  

Use AWS SES to send an email to approvers when their action is required Develop a simple application that allows approvers to accept or reject a build Invoke an AWS Lambda function to advance the pipeline when a build is accepted

B.  

If approved, add an approved tag when pushing changes to the CodeCommit repository. CodePipeiine will proceed to build and deploy approved commits without interruption

C.  

Add an approval step to CodeCommit Commits will not be saved until approved.

D.  

Add an approval action to the pipeline. Configure the approval action to publish to an Amazon SNS topic when approval is required. The pipeline execution will stop and wait for an approval

Discussion 0
Question # 25

A company is managing a NoSQL database on-premises to host a critical component of an application, which is starting to have scaling issues. The company wants to migrate the application to Amazon DynamoDB with the following considerations:

• Optimize frequent queries

• Reduce read latencies

• Plan for frequent queries on certain key attributes of the table

Which solution would help achieve these objectives?

Options:

A.  

Create global secondary indexes on keys that are frequently queried Add the necessary attributes into the indexes.

B.  

Create local secondary indexes on keys that are frequently queried DynamoDB will fetch needed attributes from the table .

C.  

Create DynamoDB global tables to speed up query responses Use a scan to fetch data from the table.

D.  

Create an AWS Auto Scaling policy for the DynamoDB table

Discussion 0
Question # 26

A development team uses AWS Elastic Beanstalk for application deployment. The team has configured the application version lifecycle policy to limit the number of application versions to 25 However even with the lifecycle policy the source bundle is deleted from the Amazon S3 source bucket

What should a developer do in the Elastic Beanstalk application version lifecycle settings to retain the source code in the S3 bucket?

Options:

A.  

Change the Set the application versions limit by total count setting to zero.

B.  

Disable the Lifecycle policy setting

C.  

Change the Set the application version limit by age setting to zero.

D.  

Set Retention to Retain source bundle in S3.

Discussion 0
Question # 27

Given the following AWS CloudFormation template:

What is the MOST efficient way to reference the new Amazon S3 bucket from another AWS CloudFormation template?

Options:

A.  

Add an Export declaration to the outputs section of the original template and use ImportValue in other templates.

B.  

Add Exported: True to the ContentBucket in the original template and use ImportResource in other templates.

C.  

Create a custom AWS CloudFormation resource that gets the bucket name from the ContentBucket resource of the first stack.

D.  

Use Fn: : Include to include the existing template in other template and use the ContentBucket resource directly

Discussion 0
Question # 28

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?

Options:

A.  

Configure First in First out (FIFO) delivery in a standard Amazon SQS queue to process requests.

B.  

Use an SQS FIFO queue to process requests

C.  

Use the SetOrder attribute to ensure sequential request processing

D.  

Convert the standard queue to a FIFO queue by renaming the queue to use the fifo suffix.

Discussion 0
Question # 29

A developer is building an application on Amazon EC2 The developer encountered an "Access Denied" error on some of the API calls to AWS services while testing The developer needs to modify permissions that have been already given to the instance

How can these requirements be met with minimal changes and minimum downtime?

Options:

A.  

Make a new 1AM role with the needed permissions Stop the instance. Attach the new 1AM role to the instance Start the instance.

B.  

Delete the existing 1AM role Attach a new 1AM role with the needed permissions

C.  

Stop the instance Update the attached 1AM role adding the needed permissions. Start the instance

D.  

Update the attached 1AM role adding the needed permissions

Discussion 0
Question # 30

A developer is migrating code to an AWS Lambda function that will access an Amazon Aurora MySQL database.

What is the MOST secure way to authenticate the function to the database?

Options:

A.  

Store the database credentials as encrypted parameters in AWS Systems Manager Parameter Store Obtain the credentials from Systems Manager when the Lambda function needs to connect to the database

B.  

Store the database credentials in AWS Secrets Manager Let Secrets Manager handle the rotation of the credentials, as required

C.  

Store the database credentials in an Amazon S3 bucket that has a restrictive bucket policy for the Lambda role only when accessing the credentials Use AWS KMS to encrypt the data

D.  

Create a policy with rds-db connect access to the database and attach it to the role assigned to the Lambda function

Discussion 0
Get AWS-Certified-Developer-Associate dumps and pass your exam in 24 hours!

Free Exams Sample Questions