Desarrollador prueba extendida

Desarrollador prueba extendida

Professional Development

105 Qs

quiz-placeholder

Similar activities

OOP Midterm SY2022 - 2023

OOP Midterm SY2022 - 2023

Professional Development

100 Qs

Computer - Professional Development

Computer - Professional Development

University - Professional Development

109 Qs

AWS_Database_Quizz

AWS_Database_Quizz

Professional Development

100 Qs

2021 AWS CCP Technology Definitions

2021 AWS CCP Technology Definitions

Professional Development

108 Qs

Post-Test - ISEP203 IINT

Post-Test - ISEP203 IINT

Professional Development

110 Qs

Fundamentals of Information Systems

Fundamentals of Information Systems

Professional Development

100 Qs

Post-Test ISST305 ATT

Post-Test ISST305 ATT

Professional Development

100 Qs

Advance Networking

Advance Networking

Professional Development

100 Qs

Desarrollador prueba extendida

Desarrollador prueba extendida

Assessment

Quiz

Computers

Professional Development

Medium

Created by

ALFREDO CARRACEDO

Used 1+ times

FREE Resource

105 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

A social media application uses the AWS SDK for JavaScript on the frontend to obtain user credentials from AWS STS. The application stores assets in an S3 bucket and serves them through a CloudFront distribution. The credentials for the assumed role are stored in plaintext in a JSON file within the application code. Which solution will allow the application to retrieve user credentials without hardcoding them?
Add a LambdaEdge function to the distribution; invoke it on viewer request; grant its role permission to access AWS STS; move all SDK calls into the function.
Add a CloudFront function to the distribution; invoke it on viewer request; grant its role permission to access AWS STS; move all SDK calls into the function.
Add a LambdaEdge function to the distribution; invoke it on viewer request; move credentials from the JSON file into the function; move all SDK calls into the function.
Add a CloudFront function to the distribution; invoke it on viewer request; move credentials from the JSON file into the function; move all SDK calls into the function.

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

A developer is creating a Lambda function that retrieves data from a third‑party system, formats it into a PDF, and encrypts the file using AWS KMS. The PDF file can exceed 1 MB. Which step must be taken to ensure that the encryption can be reversed later?
Store the encrypted data key from GenerateDataKey along with the encrypted file.
Store the plaintext key from GenerateDataKey on disk.
Use the plaintext key with the KMS Encrypt API to encrypt the file.
Use the encrypted key with the KMS Encrypt API to encrypt the file.

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

A developer wants to reduce risk when deploying a new version of a Lambda function by splitting traffic between the existing version and the new version.
Configure a weighted routing policy in Route 53 to split traffic between the versions.
Create a Lambda function alias that splits traffic between the two versions.
Create an Application Load Balancer (ALB) that splits traffic between the two versions.
Create a new Lambda function that filters requests and invokes the appropriate version based on content.

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

A developer is designing a serverless multi‑tier application for a game. The application must allow users to register and log in via a web browser and make requests to Lambda functions behind an API Gateway HTTP API. Which solution meets these requirements with minimal operational overhead?
Create Amazon Cognito user pools to integrate with external social identity providers and configure IAM roles for identity pools.
Program the sign‑in page to create IAM groups and assign roles.
Create an RDS for SQL Server database to store user credentials and manage access.
Configure the sign‑in page to store users in a DynamoDB table with an attached IAM policy.

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

A developer is building a cloud‑based photo storage application for mobile users that supports tens of thousands of users. The application uses an Amazon API Gateway REST API integrated with AWS Lambda functions to process photos and stores photo metadata in Amazon DynamoDB. Users must sign up, upload photos (300 KB to 5 MB), and retrieve previously uploaded images. Which solution minimizes operational overhead?
Use Amazon Cognito user pools for user account management, set up an API Gateway Cognito authorizer, and have the Lambda function store both photos and metadata in DynamoDB, retrieving photos directly from DynamoDB.
Use Amazon Cognito user pools for user management, configure an API Gateway Cognito authorizer, and have the Lambda function store photos in Amazon S3 while saving the S3 object key in DynamoDB for metadata; retrieve photos by querying DynamoDB for the key.
Create an IAM user for each application user during sign‑up, use IAM authentication with API Gateway, and use the Lambda function to store photos in Amazon S3 while saving the S3 key in DynamoDB; retrieve photos by querying DynamoDB.
Create a DynamoDB table for user accounts, implement a Lambda authorizer to validate credentials against it, integrate it with API Gateway, and have the Lambda function store photos in Amazon S3 while saving the S3 key in DynamoDB; retrieve photos by querying DynamoDB.

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

A developer supports an application that uses a DynamoDB table. The table stores customer orders, and the application must perform an operation to retrieve multiple items with a minimum impact in database. Which DynamoDB API call is most efficient for this purpose?
BatchGetItem.
GetItem.
Scan.
Query.

7.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

A developer is creating an application that stores sensitive data in a DynamoDB table. The table is configured to send change events to a DynamoDB stream, which triggers a Lambda function to process incoming orders. An operational review reveals that some orders have a quantity of 0. The developer needs to create a dashboard showing the number of unique customers affected per day. Which solution meets these requirements?
Grant the Lambda function permission to send logs to CloudWatch Logs; implement a CloudWatch Logs Insights query that counts unique customers for orders with quantity 0, grouped by day; add the query to a CloudWatch dashboard.
Use Amazon Athena to query CloudTrail logs for API calls and build a dashboard.
Configure the Lambda function to send events to EventBridge; create a rule to group unique customers and output to a dashboard.
Enable custom CloudWatch metrics for the DynamoDB stream; create an alarm that groups unique customers; add the alarm to a dashboard.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?