100% tevredenheidsgarantie Direct beschikbaar na je betaling Lees online óf als PDF Geen vaste maandelijkse kosten 4,6 TrustPilot
logo-home
Tentamen (uitwerkingen)

AWS Certified Developer Associate 3 Multiple Choice Questions And Correct Answers With Rationale.

Beoordeling
-
Verkocht
-
Pagina's
40
Cijfer
A+
Geüpload op
20-12-2023
Geschreven in
2023/2024

AWS Certified Developer Associate 3 Multiple Choice Questions And Correct Answers With Rationale. You are the lead for your development team. There is a requirement to provision an application using the Elastic beanstalk service. It's a custom application wherein there are a lot of configuration files and patches that need to be download. Which of the following would be the best way to provision the environment in the least time possible? A. Use a custom AMI for the underlying instances B. Use configuration files to download and install the updates C. Use the User data section for the Instances to download the updates D. Use the metadata data section for the Instances to download the updates Explanation : Answer - A The AWS Documentation mentions the following When you create an AWS Elastic Beanstalk environment, you can specify an Amazon Machine Image (AMI) to use instead of the standard Elastic Beanstalk AMI included in your platform configuration's solution stack. A custom AMI can improve provisioning times when instances are launched in your environment if you need to install a lot of software that isn't included in the standard AMIs.

Meer zien Lees minder
Instelling
Vak

Voorbeeld van de inhoud

AWS Certified Developer Associate 3
Multiple Choice Questions And Correct Answers
With Rationale.
You are the lead for your development team. There is a requirement to provision
an application using the Elastic beanstalk service. It's a custom application
wherein there are a lot of configuration files and patches that need to be
download. Which of the following would be the best way to provision the
environment in the least time possible?

A. Use a custom AMI for the underlying instances
B. Use configuration files to download and install the updates
C. Use the User data section for the Instances to download the updates
D. Use the metadata data section for the Instances to download the updates
Explanation :
Answer - A
The AWS Documentation mentions the following
When you create an AWS Elastic Beanstalk environment, you can specify an Amazon
Machine Image
(AMI) to use instead of the standard Elastic Beanstalk AMI included in your platform
configuration's
solution stack. A custom AMI can improve provisioning times when instances are
launched in your
environment if you need to install a lot of software that isn't included in the standard
AMIs.
Using configuration files
(https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/ebextensions.html) is great for
configuring
and customizing your environment quickly and consistently. Applying configurations,
however, can
start to take a long time during environment creation and updates. If you do a lot of
server
configuration in configuration files, you can reduce this time by making a custom AMI
that already has
the software and configuration that you need.
Options B and C are invalid since these options would not result in the least amount of
time for setting
up the environment.
Option D is invalid since the metadata data section is used for getting information about
the
underlying instances
For more information on working with custom environments, please refer to the below

,URL
https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features.customenv.html
A development team is developing a mobile based application. They want to
use AWS services for data storage and for managing authentication. It also
needs to be ensured that a second level of authentication is available for
users. Which of the following would assist in this? Choose 2 answers from the
options given below

A. Use the AWS Cognito Service
B. Use the AWS Config Service
C. Enable MFA for the underlying user pool
D. Enable user names and passwords for the underlying user pools
Explanation :
Answer - A and C
The AWS Documentation mentions the following
Amazon Cognito provides authentication, authorization, and user management for your
web and
mobile apps. Your users can sign in directly with a user name and password, or through
a third party
such as Facebook, Amazon, or Google.
Multi-factor authentication (MFA) increases security for your app by adding another
authentication
method, and not relying solely on user name and password. You can choose to use
SMS text
messages, or time-based one-time (TOTP) passwords as second factors in signing in
your users.
Option B is invalid since this is a configuration service
Option D is invalid since user names and passwords is not a valid second level of
authentication
For more information on MFA with AWS Cognito, please refer to the below URL
https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-settings-mfa.html
Your development team is working with Docker containers. These containers
need to encrypt data. The data key needs to be generated using the KMS service.
The data key should be in the encrypted format. Which of the following would you
most ideally use?

A. The GenerateDataKey command
B. The GenerateDataKeyWithoutPlaintext command
C. Use the CMK Keys
D. Use client-side keys
Explanation :
Answer - B
The AWS Documentation mentions the following
Returns a data encryption key encrypted under a customer master key (CMK). This
operation is
identical to GenerateDataKey

,(https://docs.aws.amazon.com/kms/latest/APIReference/API_GenerateDataKey.html)
but returns
only the encrypted copy of the data key.
Option A is invalid since this also returns a plain text key as well
Option C is invalid since you should not use the CMK keys for encrypting data
Option D is invalid since the question states that you need to use the KMS service
For more information on Generating data keys, please refer to the below URL
https://docs.aws.amazon.com/kms/latest/APIReference/API_GenerateDataKeyWithoutP
laintext.html
Your development team is developing several Lambda functions for testing.
These functions will be called by a single .Net program. The program needs to
call each Lambda function in a sequential manner for testing purposes. How
can you accomplish this in the easiest way to ensure that least changes need
to be made to the .Net program to call the various Lambda functions?

A. Create different environment variables for the Lambda function
B. Create different versions for the Lambda function
C. Create an ALIAS and reference is in the program
D. Use the SAM for deployment of the functions
Explanation :
Answer - C
The AWS Documentation mentions the following
You can create one or more aliases for your Lambda function. An AWS Lambda alias is
like a pointer to
a specific Lambda function version.
By using aliases, you can access the Lambda function an alias is pointing to (for
example, to invoke the
function) without the caller having to know the specific version the alias is pointing to
Option A is invalid since environment variables in AWS Lambda are used to dynamically
pass settings
to your function code and libraries, without making changes to the Lambda code.
Option B is invalid since this is used to publish one or more versions of your Lambda
function
Option D is invalid since this is used to define serverless applications
For more information on ALIAS, please refer to the below URL
https://docs.aws.amazon.com/lambda/latest/dg/aliases-intro.html
You are starting to develop an application using AWS services. You are testing
the services out by querying them using REST API. Which of the following
would be needed to make successful calls to AWS services using REST API

A. User name and password
B. SSL certificates
C. Access Keys
D. X.509 certificates
Explanation :
Answer - C

, The AWS Documentation mentions the following
Access keys consist of an access key ID (for example, AKIAIOSFODNN7EXAMPLE)
and a secret access
key (for example, wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY). You use
access keys to sign
programmatic requests that you make to AWS if you use the AWS SDKs, REST, or
Query API
operations.
Because of what is mentioned in the AWS Documentation , all other options are invalid
For more information on Access Keys, please refer to the below URL
https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html
You've currently set up an API gateway service in AWS. The API gateway is
calling a custom API hosted on an EC2 Instance. There are severe latency
issues and you need to diagnose the reason for those latency issues. Which of
the following could be used to address this concern?

A. AWS X-Ray
B. AWS Cloudwatch
C. AWS Cloudtrail
D. AWS VPC Flow logs
Explanation :
Answer - A
The AWS Documentation mentions the following
AWS X-Ray is an AWS service that allows you to trace latency issues with your
Amazon API Gateway
APIs. X-Ray collects metadata from the API Gateway service and any downstream
services that make
up your API. X-Ray uses this metadata to generate a detailed service graph that
illustrates latency
spikes and other issues that impact the performance of your API.
Option B is invalid since this is used to log API execution operations
Option C is invalid since this is used to log API Gateway API management operations
Option D is invalid since this is used to log calls into the VPC
For more information on API monitoring overview, please refer to the below URL
https://docs.aws.amazon.com/apigateway/latest/developerguide/monitoring_overview.ht
ml
Your company has setup an application in AWS. The application has been
developed inhouse which consists of many distributed components. After
initial launch of the application, important information which gets exchanged
between components gets lost whenever one of the components is down. As a
developer what can you suggest in resolving this issue?

A. Suggest the usage of the SQS service for messaging across the distributed
components
B. Suggest the usage of the SNS service for messaging across the distributed
components

Geschreven voor

Vak

Documentinformatie

Geüpload op
20 december 2023
Aantal pagina's
40
Geschreven in
2023/2024
Type
Tentamen (uitwerkingen)
Bevat
Vragen en antwoorden

Onderwerpen

$16.99
Krijg toegang tot het volledige document:

100% tevredenheidsgarantie
Direct beschikbaar na je betaling
Lees online óf als PDF
Geen vaste maandelijkse kosten


Ook beschikbaar in voordeelbundel

Maak kennis met de verkoper

Seller avatar
De reputatie van een verkoper is gebaseerd op het aantal documenten dat iemand tegen betaling verkocht heeft en de beoordelingen die voor die items ontvangen zijn. Er zijn drie niveau’s te onderscheiden: brons, zilver en goud. Hoe beter de reputatie, hoe meer de kwaliteit van zijn of haar werk te vertrouwen is.
ACADEMICAIDSTORE Chamberlain College Of Nursing
Volgen Je moet ingelogd zijn om studenten of vakken te kunnen volgen
Verkocht
1203
Lid sinds
4 jaar
Aantal volgers
893
Documenten
11803
Laatst verkocht
18 uur geleden
ACADEMICAID STORE

Welcome to ACADEMICAID store! We specialize in reliable test banks, exam questions with verified answers, practice exams, study guides, and complete exam review materials to help students pass on the first try. Our uploads support Nursing programs, professional certifications, business courses, accounting classes, and college-level exams. All documents are well-organized, accurate, exam-focused, and easy to follow, making them ideal for quizzes, midterms, finals, ATI & HESI prep, NCLEX-style practice, certification exams, and last-minute reviews. If you’re looking for trusted test banks, comprehensive exam prep, and time-saving study resources, you’re in the right place.

Lees meer Lees minder
4.1

175 beoordelingen

5
97
4
29
3
28
2
6
1
15

Populaire documenten

Recent door jou bekeken

Waarom studenten kiezen voor Stuvia

Gemaakt door medestudenten, geverifieerd door reviews

Kwaliteit die je kunt vertrouwen: geschreven door studenten die slaagden en beoordeeld door anderen die dit document gebruikten.

Niet tevreden? Kies een ander document

Geen zorgen! Je kunt voor hetzelfde geld direct een ander document kiezen dat beter past bij wat je zoekt.

Betaal zoals je wilt, start meteen met leren

Geen abonnement, geen verplichtingen. Betaal zoals je gewend bent via Bancontact, iDeal of creditcard en download je PDF-document meteen.

Student with book image

“Gekocht, gedownload en geslaagd. Zo eenvoudig kan het zijn.”

Alisha Student

Veelgestelde vragen