AWS Certified Developer Associate DVA-C01 – Question214

A Developer is going to deploy an AWS Lambda function that requires significant CPU utilization.
Which approach will MINIMIZE the average runtime of the function?

A.
Deploy the function into multiple AWS Regions.
B. Deploy the function into multiple Availability Zones.
C. Deploy the function using Lambda layers.
D. Deploy the function with its memory allocation set to the maximum amount.

Correct Answer: C

Explanation:

Explanation: Layers let you keep your deployment package small, which makes development easier. You can avoid errors that can occur when you install and package dependencies with your function code.
Reference: https://docs.aws.amazon.com/lambda/latest/dg/lambda-dg.pdf (86)