Learning
Learning
Loading practice session...
AWS Certified SysOps Administrator · Exam domain
18 practice questions in this domain. AI-tutored explanations for every answer.
Sign in to practice all 18 questions with progress tracking and AI explanations.
1. A company hosts a global e-commerce website with static assets stored in Amazon S3. Users in Asia and Europe report slow page load times. Which solution best improves performance while minimizing operational overhead?
Explanation
CloudFront caches content at 400+ global edge locations, automatically serving users from the nearest point of presence. This eliminates the need to replicate infrastructure across regions, dramatically reducing latency and operational burden.
2. An application serves large video files to millions of global users. The origin server is frequently overwhelmed by requests. Which CloudFront feature directly reduces origin load while maintaining high availability?
Explanation
CloudFront's edge caching with appropriate TTL values means cached objects are served directly from edge locations without contacting the origin. This dramatically reduces origin load — repeat requests are fulfilled entirely from the cache.
3. A database workload on an EC2 instance requires consistently low latency and high I/O throughput for transactional processing. The workload is I/O-intensive with random read/write patterns. Which EBS volume type is most appropriate?
Explanation
io2 (Provisioned IOPS SSD) is purpose-built for I/O-intensive transactional databases requiring consistently low latency. Unlike gp2's burst model, io2 delivers guaranteed IOPS regardless of volume size, ensuring predictable performance.
4. An EC2 instance running a high-throughput database is experiencing I/O performance bottlenecks despite using an io1 EBS volume. The instance is r5.large. What is the most likely cause and solution?
Explanation
EBS-optimized instances provide dedicated network bandwidth between EC2 and EBS, eliminating I/O contention with other network traffic. Without EBS optimization, the instance shares bandwidth, creating a bottleneck even with high-IOPS io1 volumes.
5. A web application queries a relational database for product catalog data that rarely changes. Database CPU is consistently high due to repeated identical queries. Which ElastiCache caching strategy should be implemented first?
Explanation
Lazy loading populates the cache only for data actually requested, making it ideal for read-heavy workloads with rarely-changing data. The cache absorbs repeated identical queries, dramatically reducing database CPU. Only requested items consume cache memory.
Practice all 18+ questions in this domain
Start free practice →