What is the main purpose of Docker?
To build, test, and deploy applications in containers
What is the maximum execution time for an AWS Lambda function?
15 minutes
What kind of pricing model does AWS Elastic Beanstalk use?
Pay-as-you-go
What AWS service provides a fully managed Docker container registry for storing and managing container images?
Amazon Elastic Container Registry (ECR)
Because Lambda only runs when triggered by an event, what is the term used to describe its cost model?
Event-driven
In Elastic Beanstalk, what is the term for a version-specific collection of AWS resources (like EC2 and ELB) that runs your application code?
Environment
If you want to create an ECS cluster that runs the containers, what should it be backed with?
Amazon EC2
What does serverless computing allow you to do?
enables you to build and run applications and services without provisioning or managing servers
After you upload your code, what does Elastic Beanstalk do?
automatically handles the deployment
Which 2 ECS cluster options provide more granular control over infrastructure?
EC2 Linux + Networking and EC2 Windows + Networking
What is the Lambda deployment package?
ZIP archive that contains your function code and dependencies
What does Elastic Beanstalk deploy your code on for Java?
Apache Tomcat
In Amazon ECS, what is the name of the JSON-formatted text file that describes one or more containers (up to 10) that form your application, including parameters like CPU and memory?
Task Definition
Which Lambda feature prepares runtime environments in advance so that your functions can respond immediately to incoming requests without "cold start" latency?
Provisioned Concurrency
Which deployment strategy in Elastic Beanstalk involves creating a second, separate environment and then swapping CNAMEs (URLs) to achieve zero downtime and easy rollback?
Blue/Green Deployment