AWS DVA-C02 Certification Exam Sample Questions

, AWS-CDA PDFDVA-C02 Braindumps, DVA-C02 Exam Dumps, DVA-C02 Examcollection, DVA-C02 Questions PDF, DVA-C02 Sample Questions, AWS-CDA Dumps, AWS-CDA Official Cert Guide PDF, AWS-CDA VCEWe have prepared AWS Developer Associate (DVA-C02) certification sample questions to make you aware of actual exam properties. This sample question set provides you with information about the AWS-CDA exam pattern, question formate, a difficulty level of questions and time required to answer each question. To get familiar with AWS Certified Developer - Associate exam, we suggest you try our Sample AWS DVA-C02 Certification Practice Exam in simulated AWS certification exam environment.

To test your knowledge and understanding of concepts with real-time scenario based AWS DVA-C02 questions, we strongly recommend you to prepare and practice with Premium AWS-CDA Certification Practice Exam. The premium AWS-CDA certification practice exam helps you identify topics in which you are well prepared and topics in which you may need further training to achieving great score in actual AWS Certified Developer - Associate exam.

AWS DVA-C02 Sample Questions:

01. A developer is creating a web application that must give users the ability to post comments and receive feedback in near real time. Which solutions will meet these requirements?
(Select TWO.)
a) Create an AWS AppSync schema and corresponding APIs. Use an Amazon DynamoDB table as the data store.
b) Create a WebSocket API in Amazon API Gateway. Use an AWS Lambda function as the backend. Use an Amazon DynamoDB table as the data store.
c) Create an AWS Elastic Beanstalk application that is backed by an Amazon RDS database. Configure the application to allow long-lived TCP/IP sockets.
d) Create a GraphQL endpoint in Amazon API Gateway. Use an Amazon DynamoDB table as the data store.
e) Establish WebSocket connections to Amazon CloudFront. Use an AWS Lambda function as the CloudFront distribution’s origin. Use an Amazon Aurora DB cluster as the data store.
 
02. A developer is testing an application locally and has deployed the application to an AWS Lambda function. To avoid exceeding the deployment package size quota, the developer did not include the dependencies in the deployment file.
When the developer tests the application remotely, the Lambda function does not run because of missing dependencies. Which solution will resolve this issue?
a) Use the Lambda console editor to update the code and include the missing dependencies.
b) Create an additional .zip file that contains the missing dependencies. Include the .zip file in the original Lambda deployment package.
c) Add references to the missing dependencies in the Lambda function's environment variables.
d) Create a layer that contains the missing dependencies. Attach the layer to the Lambda function.
 
03. A developer is building a new application that transforms text files to .pdf files. A separate application writes the text files to a source Amazon S3 bucket. The new application must read the files as they arrive in Amazon S3 and must convert the files to .pdf files by using an AWS Lambda function. The developer has written an IAM policy to allow access to Amazon S3 and Amazon CloudWatch Logs.
What should the developer do to ensure that the Lambda function has the correct permissions?
a) Create a Lambda execution role by using AWS Identity and Access Management (IAM). Attach the IAM policy to the role. Assign the Lambda execution role to the Lambda function.
b) Create a Lambda execution user by using AWS Identity and Access Management (IAM). Attach the IAM policy to the user. Assign the Lambda execution user to the Lambda function.
c) Create a Lambda execution role by using AWS Identity and Access Management (IAM). Attach the IAM policy to the role. Store the IAM role as an environment variable in the Lambda function.
d) Create a Lambda execution user by using AWS Identity and Access Management (IAM). Attach the IAM policy to the user. Store the IAM user credentials as environment variables in the Lambda function.
 
04. A developer is working on an application that stores highly confidential data in a database. The developer must use AWS Key Management Service (AWS KMS) with envelope encryption to protect the data.
How should the developer configure the data encryption to meet these requirements?
a) Encrypt the data by using a KMS key. Store the encrypted data in the database.
b) Encrypt the data by using a generated data key. Store the encrypted data in the database.
c) Encrypt the data by using a generated data key. Store the encrypted data and the data key ID in the database.
d) Encrypt the data by using a generated data key. Store the encrypted data and the encrypted data key in the database.
 
05. A company is migrating a legacy application to Amazon EC2 instances. The application uses a user name and password that are stored in the source code to connect to a MySQL database.
The company will migrate the database to an Amazon RDS for MySQL DB instance. As part of the migration, the company needs to implement a secure way to store and automatically rotate the database credentials.
Which solution will meet these requirements?
a) Store the database credentials in environment variables in an Amazon Machine Image (AMI). Rotate the credentials by replacing the AMI.
b) Store the database credentials in AWS Systems Manager Parameter Store. Configure Parameter Store to automatically rotate the credentials.
c) Store the database credentials in environment variables on the EC2 instances. Rotate the credentials by relaunching the EC2 instances.
d) Store the database credentials in AWS Secrets Manager. Configure Secrets Manager to automatically rotate the credentials.
 
06. A developer is adding Amazon ElastiCache for Memcached to a company's existing record storage application. The developer has decided to use lazy loading based on an analysis of common record handling patterns. Which pseudocode example will correctly implement lazy loading?
a) record_value = db.query("UPDATE Records SET Details = {1} WHERE ID == {0}",
record_key, record_value)
cache.set (record_key, record_value)
b) record_value = cache.get(record_key)
if (record_value == NULL)
record_value = db.query("SELECT Details FROM Records WHERE ID == {0}",
record_key)
cache.set (record_key, record_value)
c) record_value = cache.get (record_key)
db.query("UPDATE Records SET Details = {1} WHERE ID == {0}", record_key,
record_value)
d) record_value = db.query("SELECT Details FROM Records WHERE ID == {0}",
record_key)
if (record_value != NULL)
cache.set (record_key, record_value)
 
07. A developer is adding sign-up and sign-in functionality to an application. The application must make an API call to a custom analytics solution to log user sign-in events.
Which combination of actions should the developer perform to meet these requirements?
(Select TWO.)
a) Use Amazon Cognito to provide the sign-up and sign-in functionality.
b) Use AWS Identity and Access Management (IAM) to provide the sign-up and sign-in functionality.
c) Configure an AWS Config rule to make the API call when a user is authenticated.
d) Invoke an Amazon API Gateway method to make the API call when a user is authenticated.
e) Invoke an AWS Lambda function to make the API call when a user is authenticated.
 
08. A developer is building a web application that uses Amazon API Gateway. The developer wants to maintain different environments for development (dev) and production (prod) workloads. The API will be backed by an AWS Lambda function with two aliases: one for dev and one for prod.
How can the developer maintain these environments with the LEAST amount of configuration?
a) Create a REST API for each environment. Integrate the APIs with the corresponding dev and prod aliases of the Lambda function. Deploy the APIs to their respective stages. Access the APIs by using the stage URLs.
b) Create one REST API. Integrate the API with the Lambda function by using a stage variable in place of an alias. Deploy the API to two different stages: dev and prod. Create a stage variable in each stage with different aliases as the values. Access the API by using the different stage URLs.
c) Create one REST API. Integrate the API with the dev alias of the Lambda function. Deploy the API to the dev environment. Configure a canary release deployment for the prod environment where the canary will integrate with the Lambda prod alias.
d) Create one REST API. Integrate the API with the prod alias of the Lambda function. Deploy the API to the prod environment. Configure a canary release deployment for the dev environment where the canary will integrate with the Lambda dev alias.
 
09. A company is using Amazon API Gateway for its REST APIs in an AWS account. A Developer wants to allow only IAM users from another AWS account to access the APIs.
Which combination of Steps should the developer take to meet these requirements?
(Select TWO.)
a) Create an IAM permission policy. Attach the policy to each IAM user. Set the method authorization type
for the APIs to AWS_IAM. Use Signature Version 4 to sign the API requests.
b) Create an Amazon Cognito user pool. Add each IAM user to the user pool. Set the method authorization
type for the APIs to COGNITO_USER_POOLS. Authenticate by using the IAM credentials in Amazon
Cognito. Add the ID token to the request headers.
c) Create an Amazon Cognito identity pool. Add each IAM user to the identity pool. Set the method
authorization type for the APIs to COGNITO_USER_POOLS. Authenticate by using the IAM credentials
in Amazon Cognito. Add the access token to the request headers.
d) Create a resource policy for the APIs to allow access for each IAM user only.
e) Create an Amazon Cognito authorizer for the APIs to allow access for each IAM user only. Set the
method authorization type for the APIs to COGNITO_USER_POOLS.
 
10. A developer wants to track the performance of an application that runs on a fleet of Amazon EC2 instances. The developer wants to view and track statistics, such as the average request latency and the maximum request latency, across the fleet. The developer wants to receive immediate notification if the average response time exceeds a threshold.
Which solution will meet these requirements?
a) Configure a cron job on each EC2 instance to measure the response time and update a log file stored in an Amazon S3 bucket every minute. Use an Amazon S3 event notification to invoke an AWS Lambda function that reads the log file and writes new entries to an Amazon OpenSearch Service cluster. Visualize the results in OpenSearch Dashboards. Configure OpenSearch Service to send an alert to an Amazon Simple Notification Service (Amazon SNS) topic when the response time exceeds the threshold.
b) Configure the application to write the response times to the system log. Install and configure the Amazon Inspector agent on the EC2 instances to continually read the logs and send the response times to Amazon EventBridge (Amazon CloudWatch Events). View the metrics graphs in the EventBridge (CloudWatch Events) console. Configure an EventBridge (CloudWatch Events) custom rule to send an Amazon Simple Notification Service (Amazon SNS) notification when the average of the response time metric exceeds the threshold.
c) Configure the application to write the response times to a log file. Install and configure the Amazon CloudWatch agent on the EC2 instances to stream the application log to CloudWatch Logs. Create a metric filter of the response time from the log. View the metrics graphs in the CloudWatch console. Create a CloudWatch alarm to send an Amazon Simple Notification Service (Amazon SNS) notification when the average of the response time metric exceeds the threshold.
d) Install and configure AWS Systems Manager Agent (SSM Agent) on the EC2 instances to monitor the response time and send the response time to Amazon CloudWatch as a custom metric. View the metrics graphs in Amazon QuickSight. Create a CloudWatch alarm to send an Amazon Simple Notification Service (Amazon SNS) notification when the average of the response time metric exceeds the threshold.

Answers:

Question: 01
Answer: a, b
Question: 02
Answer: d
Question: 03
Answer: a
Question: 04
Answer: d
Question: 05
Answer: d
Question: 06
Answer: b
Question: 07
Answer: a, e
Question: 08
Answer: b
Question: 09
Answer: a, d
Question: 10
Answer: c

Note: Please update us by writing an email on feedback@vmexam.com for any error in AWS Certified Developer - Associate certification exam sample questions

Your rating: None Rating: 4.8 / 5 (81 votes)