- Consulting
- Training
- Partners
- About Us
x
AWS has been the leader in Cloud Computing for 10 years and getting certified as an Amazon Developer is something that every developer working on building scalable applications on AWS would intent to go for. With the same mindset, I had recently appeared and cleared the developer certification. You can read more about the AWS Developer Associate Certification here.
Here are some Sample Questions for AWS Certified Developer Associate Certification. Answers are at the bottom. In case you need detailed clarification, please feel free to post it in the comments section.
1. What is a worker with respect to SWF?
a. Workers are programs that interact with Amazon SWF to get tasks, process the received task, and return the results
b. Workers are ec2 instances which can create s3 buckets and process SQS messages
c. Workers are the people in the warehouse processing orders for amazon
d. Workers are the component of IIS which run on windows platform under the w3wp.exe process
2. Which of the below statements about DynamoDB are true? (Select any 2)
a. DynamoDB uses a Transaction-Level Read Consistency
b. DynamoDB uses optimistic concurrency control
c. DynamoDB uses conditional writes for consistency
d. DynamoDB restricts an item access during reads
e. DynamoDB restricts item access during writes
1. A Security system monitors 600 cameras, saving image metadata every 1 minute to an Amazon DynamoDB table. Each sample involves 1 kb of data, and the data writes are evenly distributed over time.
How much write throughput is required for the target table?
a. 6000
b. 10
c. 3600
d. 60
e. 600
2. Which read request in DynamoDB returns a response with the most up-to-date data, reflecting the updates from all prior write operations that were successful?
a. Eventual Consistent Reads
b. Conditional reads for consistency
c. Strongly Consistent Reads
d. Not possible
3. You run a Query operation which returned all the data attributes for the selected items. You are only interested in seeing a few attributes. How do you achieve this in DynamoDB?
a. This is not possible
b. Use ProjectExpression
c. Use ExpressionAttribute
d. Use ProjectionExpression
a. Java with Apache
b. IBM with Websphere
c. .Net
d. Perl
2. Which of the following features allow organizations to leverage a commercial federation server as an identity bridge, providing secure single sign-on into the AWS console without storing user keys and without additional passwords or sign-on?
a. Web Identification Services
b. Web Identity Federation
c. Active Directory Authentication Services
d. SAML federation
3. Your web service is burning expensive CPU cycles by constantly polling SQS queues for messages. How can you avoid this?
a. Use Elasticache to cache the messages, rather than SQS.
b. Enable SQS Long Polling
c. Modify web service code to only poll a few minutes
d. SQS automatically pushes messages to the web service, so this should not be a problem
Which of the following represents a valid AWS CloudFormation Template?
a. “Outputs” : {
“BackupLoadBalancerDNSName” : {
“Description”: “The DNSName of the backup load balancer”,
“Value”: { “Ls::GetAtt” : [ “BackupLoadBalancer”, “DNS” ]},
}
b. “Outputs” : {
“BackupLoadBalancerDNSName” : {
“Description”: “The DNSName of the backup load balancer”,
“Value”: { “Fn::GetAtt” : [ “BackupLoadBalancer”, “DNSName” ]},
}
c. “Outputs” : {
“BackupLoadBalancerDNSName” : {
“Description”: “The DNSName of the backup load balancer”,
“Value”: { “Fn::PostAtt” : [ “BackupLoadBalancer”, “Name” ]},
}
d. “Outputs” : {
“BackupLoadBalancerDNSName” : {
“Description”: “The DNSName of the backup load balancer”,
“Value”: { “Fn::GetAtt” : [ “BackupLoadBalancer”, ]},
}
2. According to below IAM Policy which is the most appropriate possibility?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
{ "Version": "2012-10-17", "Statement": [ { "Sid": "Stmt1459162621000", "Effect": "Allow", "Action": ["sns:CreateTopic", "sns:Subscribe","sns:DeleteTopic"], "Resource": [ "*" ] }, { "Effect": "Deny", "Action": [ "sns:DeleteTopic"], "Resource": [ "*" ] } ] } |
a. User can perform CreateTopic,Subscribe and DeleteTopic
b. User is denied to perform only DeleteTopic
c. User can perform CreateTopic and Subscribe but denied to perform DeleteTopic operation
d. The above policy is invalid
Answers:
If you need to get ramped up quickly for the certification, you can consider our Developing Cloud Applications with AWS course. If you would like to get further information about this course please fill out this form and we will get back to you within 24 hours.
More sample questions are coming, so keep checking this space.
Disclaimer:These questions are NOT what were in my certification exam. I personally or CloudThat does not have any official tie-up with Amazon regarding the certification or the kind of questions asked. These are my best guesses for the kind of questions to expect, given my experience with AWS in general and with the examination.
Voiced by Amazon Polly |
CloudThat is a leading provider of cloud training and consulting services, empowering individuals and organizations to leverage the full potential of cloud computing. With a commitment to delivering cutting-edge expertise, CloudThat equips professionals with the skills needed to thrive in the digital era.
Our support doesn't end here. We have monthly newsletters, study guides, practice questions, and more to assist you in upgrading your cloud career. Subscribe to get them all!
venkat
Jan 17, 2017
In Designing and Developing, programming with aws api part is there is they ask any coding related questions
Megha Mishra
Feb 1, 2017
No, They will not ask any coding related questions but they will ask APIs.
Harshal
Aug 22, 2016
Correct me if i am wrong but In design and development, #1 I guess it should be 600 writes cause the item size is 1kb, here is the documentation link: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ProvisionedThroughput.html#HowItWorks.ProvisionedThroughput.Writes
Megha Mishra
Aug 22, 2016
Yes, Harshal the item size is 1kb so 600 * 1 = 600 but this calculation will be right if you will calculate it for every one second, not for every one minute.
In 1 minute = 600 items
so in 1 second = 10 items
1 write capacity unit per item × 10 writes per second = 10 write capacity units
here is the documentation link: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ProvisionedThroughput.html#HowItWorks.ProvisionedThroughput.Writes
Harshal
Aug 24, 2016
Make sense
Click to Comment