Learning
Learning
Loading practice session...
AWS Certified SysOps Administrator · Exam domain
34 practice questions in this domain. AI-tutored explanations for every answer.
Sign in to practice all 34 questions with progress tracking and AI explanations.
1. A company needs to run a containerized microservices application without managing underlying servers. Which AWS compute service best fits this requirement?
Explanation
AWS Fargate is the serverless compute engine for containers, eliminating the need to provision or manage EC2 instances. It runs ECS or EKS tasks directly, making it ideal for containerized microservices without server management overhead.
2. A developer needs to run short-lived event-driven code that executes only when triggered by an S3 upload. Which AWS compute service is most appropriate?
Explanation
AWS Lambda is purpose-built for event-driven, short-lived functions. It integrates natively with S3 event notifications, executes only when triggered, and charges only for compute time used — making it ideal for this pattern.
3. Which scaling capability does AWS Lambda provide that distinguishes it from traditional EC2-based architectures?
Explanation
Lambda scales horizontally and automatically by running multiple concurrent executions in parallel as event volume grows. No infrastructure management is needed; Lambda handles scaling transparently up to account concurrency limits.
4. A company runs a stateless web application on Amazon ECS. As traffic increases, which ECS feature enables automatic scaling of the number of running tasks?
Explanation
ECS Service Auto Scaling uses Application Auto Scaling to increase or decrease the desired task count based on CloudWatch metrics such as CPU or memory utilization, enabling automatic horizontal scaling of containerized workloads.
5. What defines 'elasticity' in the context of AWS compute services?
Explanation
Elasticity is the ability to dynamically provision and release resources to match demand — scaling out during peak periods and scaling in when demand decreases. This avoids over-provisioning while ensuring capacity is available when needed.
Practice all 34+ questions in this domain
Start free practice →