← Back to Quiz Home
This quiz tests your ability to design decoupled architectures, comprehensive disaster recovery plans, and secure VPC connectivity.
What is a "Fan-out" architecture using SNS and SQS?
Fan-out allows you to decouple distinct processing logic (e.g., Image Resize vs Indexing) triggered by the same event.
Which Disaster Recovery strategy maintains a scaled-down version of a fully functional environment in a secondary region?
Warm Standby always runs the application but with minimal capacity (e.g., ASG min=1) to reduce RTO compared to Pilot Light.
What is the key difference between an Interface Endpoint and a Gateway Endpoint?
Gateway Endpoints are the older, free method for S3 and DynamoDB. Interface Endpoints support nearly all AWS services but incur hourly costs.
When should you use AWS Global Accelerator instead of CloudFront?
Global Accelerator optimizes the path to your application over the AWS global network but does not cache content like a CDN.
How can you implement "Strangler Fig" pattern migration?
This pattern allows for incremental modernization with lower risk than a big bang rewrite.
To handle "Session State" in a stateless scalable architecture, where should you store the session data?
Externalizing state allows any instance to handle any request, enabling seamless Auto Scaling.
How do you ensure idempotency in a payment API?
Idempotency ensures that making the same request multiple times produces the same result (e.g., charging a card only once).
What is "Event Sourcing"?
Event Sourcing provides a perfect audit trail and allows you to reconstruct the state of the system at any point in time.
Which multi-tenant architecture model offers the highest security isolation but the highest cost?
Silo isolation eliminates "noisy neighbor" issues and cross-tenant data leaks but reduces resource efficiency.
How do you securely connect a Lambda function to an RDS database in a private subnet?
The Lambda needs to be "in the VPC" (ENIs created in subnets) to reach the private RDS instance.
What does CloudFront Origin Access Control (OAC) do?
OAC is the modern replacement for OAI, ensuring users access content only through the CDN (allows WAF, Geo-blocking enforcement).
Which service is best suited for building a real-time gaming leaderboard?
Redis Sorted Sets provide lightning-fast ranking and retrieval operations (O(log N)) ideal for leaderboards.
What is the primary use case for AWS Outposts?
Outposts extend the AWS Region to your data center, providing the same APIs and hardware.
When choosing between Kinesis Data Streams and Kinesis Data Firehose, why would you choose Firehose?
Firehose handles the "buffer and deliver" logic automatically, whereas Streams is for custom real-time processing.
What is a common strategy to maximize S3 cost savings for predictable access patterns?
If you know the pattern (e.g., logs are rarely read after 30 days), explicit lifecycle rules are cheaper than Intelligent-Tiering automation fees.
How can you prevent a "Hot Partition" issue in DynamoDB?
A good partition key design spreads the I/O load across all physical partitions.
Which storage gateway type caches frequently accessed data locally while storing the full volume in S3?
Cached Volumes allow you to keep the "hot" data on-prem for low latency while leveraging S3 for the bulk storage.
What is the difference between RPO and RTO?
RPO = "How much data can I afford to lose?" (e.g., 5 mins). RTO = "How quickly must I be back online?" (e.g., 1 hour).
How do you enable an EC2 instance to access S3 without using public internet or public IPs, while keeping the traffic within the Amazon network?
Gateway Endpoints update the route table to direct S3 traffic to the VPC endpoint, bypassing the public internet entirely.
Which architecture allows you to deploy and manage a fleet of EC2 instances that scale automatically based on demand?
This is the classic "Elastic" pattern: ASG adds/removes compute, ELB distributes traffic to the healthy nodes.
Quiz Progress
0 / 0 questions answered
(0%)
0 correct
Quiz Complete!
0%
📚 Study Guides
📬 Weekly DevOps, Cloud & Gen AI quizzes & guides