0
0
AWScloud~5 mins

Lambda function concept in AWS - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is an AWS Lambda function?
An AWS Lambda function is a small piece of code that runs in the cloud without needing a server. It runs only when triggered and automatically scales.
Click to reveal answer
beginner
How does AWS Lambda handle servers?
AWS Lambda automatically manages the servers for you. You don't have to set up or maintain any servers to run your code.
Click to reveal answer
beginner
What triggers an AWS Lambda function to run?
A Lambda function runs when an event happens, like a file upload, a web request, or a timer. These events are called triggers.
Click to reveal answer
intermediate
What is the maximum execution time for a Lambda function?
A Lambda function can run up to 15 minutes per invocation. After that, it stops automatically.
Click to reveal answer
intermediate
How does AWS Lambda scale when many requests come in?
AWS Lambda automatically runs more copies of your function to handle many requests at the same time, scaling up and down as needed.
Click to reveal answer
What do you need to manage when using AWS Lambda?
ANothing, AWS manages the servers
BYou must set up virtual machines
CYou need to install operating systems
DYou must configure physical hardware
Which of these can trigger a Lambda function?
AA local computer shutdown
BA manual server reboot
CA file uploaded to cloud storage
DA printer error
What is the maximum time a Lambda function can run per invocation?
A5 minutes
BUnlimited
C1 hour
D15 minutes
How does Lambda handle many requests at once?
AIt queues requests and processes one at a time
BIt automatically runs multiple copies of the function
CIt rejects extra requests
DIt requires manual scaling
Which of these is NOT a benefit of AWS Lambda?
ARequires manual patching of servers
BNo server management
CPay only for compute time used
DAutomatic scaling
Explain in simple terms what an AWS Lambda function is and how it works.
Think about how a light turns on only when you flip a switch.
You got /5 concepts.
    Describe the main advantages of using AWS Lambda compared to traditional servers.
    Imagine not having to worry about the kitchen when cooking a meal.
    You got /5 concepts.