0
0
AWScloud~20 mins

Right-sizing resources in AWS - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Right-Sizing Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Understanding Right-Sizing Benefits

Which of the following is the primary benefit of right-sizing cloud resources?

AAvoiding any monitoring of resource usage
BIncreasing the number of resources regardless of workload
CMaximizing resource usage by always running at full capacity
DReducing costs by matching resource capacity to actual workload needs
Attempts:
2 left
💡 Hint

Think about how using only what you need affects your bill.

Architecture
intermediate
2:00remaining
Choosing the Right EC2 Instance Type

You have a web application with variable traffic that spikes during business hours. Which EC2 instance type strategy best supports right-sizing?

AUse a fixed large instance 24/7 to handle peak load
BUse the smallest instance type and manually upgrade when needed
CUse auto-scaling groups with smaller instances that scale out during peak times
DUse spot instances only without any scaling
Attempts:
2 left
💡 Hint

Consider how to handle changing traffic efficiently.

Configuration
advanced
2:00remaining
Analyzing CloudWatch Metrics for Right-Sizing

Given the following CloudWatch CPU utilization data for an EC2 instance over a week, which action best represents right-sizing?

Average CPU Utilization: 10%
ADownsize the instance to a smaller type to reduce costs
BKeep the instance size the same since utilization is stable
CTerminate the instance immediately
DIncrease the instance size to handle more load
Attempts:
2 left
💡 Hint

Low CPU usage suggests the instance might be over-provisioned.

security
advanced
1:30remaining
Right-Sizing and Security Implications

When right-sizing resources, which security consideration is most important?

AUsing default open firewall rules to simplify access
BEnsuring smaller instances have the same security groups and patches as larger ones
CRemoving all security controls to improve performance on smaller instances
DDisabling encryption to reduce CPU load
Attempts:
2 left
💡 Hint

Think about maintaining security standards regardless of resource size.

service_behavior
expert
2:30remaining
Impact of Right-Sizing on Auto Scaling Behavior

You have an Auto Scaling group with instances of type t3.large. After analyzing usage, you downsize to t3.medium instances. What is the expected impact on the Auto Scaling group's behavior?

AThe group will launch more instances to maintain the same total capacity during scale-out events
BThe group will launch fewer instances because each is smaller
CThe group will stop scaling automatically until manually restarted
DThe group will automatically upgrade instances back to t3.large
Attempts:
2 left
💡 Hint

Consider how instance size affects the number of instances needed to handle load.