0
0
AWScloud~20 mins

Route 53 with ELB integration in AWS - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Route 53 ELB Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
How does Route 53 integrate with an Elastic Load Balancer (ELB)?

Which statement best describes how Amazon Route 53 works with an Elastic Load Balancer (ELB)?

ARoute 53 creates an alias record that points directly to the ELB's DNS name, allowing seamless traffic routing without needing an IP address.
BRoute 53 requires you to manually enter the ELB's IP addresses as A records to route traffic correctly.
CRoute 53 cannot route traffic to ELB; you must use a third-party DNS service for ELB integration.
DRoute 53 uses CNAME records to point to the ELB's IP addresses for routing traffic.
Attempts:
2 left
💡 Hint

Think about how Route 53 handles dynamic IP addresses of ELB.

Configuration
intermediate
2:00remaining
Identify the correct Route 53 record configuration for ELB integration

You want to route traffic from your domain example.com to an Application Load Balancer (ALB) using Route 53. Which Route 53 record configuration is correct?

ACreate an A record with alias enabled, selecting the ALB from the dropdown list in Route 53 console.
BCreate a CNAME record pointing to the ALB's IP address.
CCreate an MX record pointing to the ALB's DNS name.
DCreate a TXT record with the ALB's DNS name as the value.
Attempts:
2 left
💡 Hint

Alias records are special Route 53 records for AWS resources.

Architecture
advanced
3:00remaining
Designing a highly available web application with Route 53 and ELB

You need to design a web application architecture that is highly available across two AWS regions using Route 53 and ELB. Which approach ensures traffic is routed to the healthiest region automatically?

AUse Route 53 geolocation routing without health checks to route traffic based on user location only.
BUse Route 53 latency-based routing with health checks on ELBs in both regions to route traffic to the region with the lowest latency and healthy ELB.
CUse Route 53 simple routing with a single ELB in one region and manually switch DNS records during failure.
DUse Route 53 weighted routing without health checks to distribute traffic evenly between regions.
Attempts:
2 left
💡 Hint

Consider routing that adapts to both latency and health status.

security
advanced
2:30remaining
Securing DNS traffic between Route 53 and ELB

Which practice improves security when integrating Route 53 with an ELB for a public web application?

ADisable HTTPS on ELB to simplify traffic inspection.
BUse a private hosted zone in Route 53 for the public domain to restrict access.
CEnable DNSSEC signing on the Route 53 hosted zone to protect DNS queries from tampering.
DConfigure ELB to accept traffic only from Route 53 IP addresses.
Attempts:
2 left
💡 Hint

Think about protecting DNS query integrity.

service_behavior
expert
3:00remaining
Understanding Route 53 alias record behavior with ELB DNS changes

If the IP addresses behind an ELB change, what happens to Route 53 alias records pointing to that ELB's DNS name?

ARoute 53 alias records convert to CNAME records automatically to handle IP changes.
BRoute 53 alias records break and require manual update with new IP addresses.
CRoute 53 alias records cache the old IP addresses for 24 hours before updating.
DRoute 53 alias records automatically resolve to the new IP addresses without any manual update required.
Attempts:
2 left
💡 Hint

Consider how alias records abstract IP management.