Amazon Route 53 — DNS & Routing
Amazon Route 53 is AWS's managed DNS (Domain Name System) service — it turns human-friendly names like example.com into the IP addresses computers use, and it can also register domain names and run health checks. The "53" refers to DNS port 53. The exam loves to confuse Route 53 (which decides which server a name points to) with CloudFront (which caches content close to users) and with load balancers (which spread traffic across servers). It also tests the many routing policies and the special "alias" record.
Q1 A company wants users in Europe to automatically be sent to servers in the Frankfurt Region and users in Asia to servers in Tokyo, choosing whichever Region gives each user the fastest network response time. Which Route 53 routing policy fits best?
- Geolocation routing
- Latency-based routing
- Weighted routing
- Simple routing
- A — Geolocation routes by the user's physical/legal location (continent, country), which is not the same as the fastest response — the nearest Region by map can still be slower on the network.
- C — Weighted routing splits traffic by percentages you set (e.g. 80/20) for testing, ignoring speed entirely.
- D — Simple routing returns one record (or random values) with no awareness of latency or location.
Q2 A team must point their root domain example.com directly at an Application Load Balancer, but they cannot use a CNAME at the top (apex) of the zone. Which Route 53 feature solves this at no extra query cost?
- An alias record
- A CNAME record
- An MX record
- A TXT record
- B — A CNAME cannot legally exist at the zone apex (the root domain) — that is the exact limitation the question describes.
- C — An MX record only directs email to mail servers, not web traffic to a load balancer.
- D — A TXT record holds text (often for verification or SPF), it does not route traffic to a resource.
Q3 During a presentation, an architect says "Route 53 is what makes our website load faster by caching images near users." Why is this statement incorrect?
- Route 53 only registers domain names and does nothing else
- Route 53 caches content, but only for users in the same Region as the origin
- Route 53 caches HTML but never images
- Route 53 is a DNS service that resolves names to addresses; content caching near users is done by CloudFront
- A — Route 53 does much more than register domains — it also does DNS resolution, health checks, and traffic routing.
- B — Route 53 does not cache content at all, so "caches only in the same Region" is false.
- C — Route 53 caches no content of any type; it returns DNS answers, not files.
Q4 A company runs a primary website in one Region and an identical standby site in another. They want Route 53 to automatically send all traffic to the standby only when the primary becomes unhealthy. Which combination achieves this?
- Weighted routing with equal weights
- Multivalue answer routing with two records
- Failover routing with health checks
- Geoproximity routing with bias
- A — Weighted routing splits traffic by percentage continuously; it does not keep the standby idle until a failure.
- B — Multivalue returns several healthy records at once for simple load spreading, not a primary/standby switch on failure.
- D — Geoproximity routes by geographic distance with an adjustable bias, unrelated to automatic failover.
Q5 A retailer must serve customers in France a French-language site and customers in Japan a Japanese-language site, strictly based on the country the user is browsing from (for content-licensing reasons). Which routing policy is designed for this?
- Latency-based routing
- Geolocation routing
- Weighted routing
- Failover routing
- A — Latency routing optimizes for network speed, not the user's country — a fast network path doesn't guarantee the legally correct content.
- C — Weighted routing splits traffic by percentage and has no concept of user location.
- D — Failover routing only switches between primary and backup on health, ignoring geography.
Q6 A startup wants to release a new version of its application to just 10% of visitors while 90% continue to the current version, so they can monitor the new version before a full rollout. Which Route 53 routing policy supports this directly?
- Simple routing
- Geoproximity routing
- Weighted routing
- Multivalue answer routing
- A — Simple routing points a name at a single target (or returns values randomly); it cannot enforce a controlled 90/10 split.
- B — Geoproximity routes by geographic distance, not by a chosen traffic percentage.
- D — Multivalue returns multiple healthy records for basic spreading but does not give you precise percentage control.
Q7 What is a Route 53 hosted zone?
- A container that holds the DNS records for a particular domain, telling Route 53 how to route traffic for that domain
- An AWS Region where DNS servers are physically located
- A cache of website content stored at edge locations
- A network firewall that filters incoming DNS requests
- B — A hosted zone is a logical record container, not a physical Region or data center location.
- C — Caching content at edge locations is CloudFront, not a hosted zone.
- D — Filtering traffic is the job of security groups, network ACLs, or AWS WAF — not a hosted zone.
Q8 A solutions team needs DNS to return several healthy IP addresses at once so client applications can pick one, and it should stop returning any endpoint that fails its health check — without designating a formal primary or backup. Which routing policy best matches?
- Failover routing
- Latency-based routing
- Simple routing
- Multivalue answer routing
- A — Failover specifically defines a primary and a backup, which the question rules out.
- B — Latency routing returns the single lowest-latency Region's record, not a set of several at once.
- C — Simple routing has no health checking, so it would keep returning a dead endpoint.
Q9 A customer wants a single AWS service to register a brand-new domain name, host its DNS records, and run health checks against their servers. Which service provides all three?
- Amazon CloudFront
- Elastic Load Balancing
- Amazon Route 53
- AWS Global Accelerator
- A — CloudFront is a content delivery network that caches content near users; it neither registers domains nor hosts DNS zones.
- B — Elastic Load Balancing spreads traffic across servers within AWS; it does not register domains or provide DNS.
- D — Global Accelerator improves traffic routing over the AWS network using anycast IPs but does not register domains or host DNS zones.
Q10 What is the key difference between an alias record and a CNAME record in Route 53?
- An alias record can point the zone apex (root domain) to AWS resources and incurs no query charge, while a CNAME cannot be used at the apex
- CNAME records are free while alias records are charged per query
- Alias records only work for email routing; CNAMEs only work for web traffic
- CNAME records can point to AWS resources but alias records cannot
- B — It is reversed: alias lookups to AWS resources are free, while CNAME queries are standard billable DNS queries.
- C — Both record types relate to directing traffic to endpoints, not a web-versus-email split.
- D — Alias records are specifically designed to point at AWS resources; that is one of their main advantages.
Q11 An engineer configures a Route 53 health check on a web server. Which statement best describes what a health check actually does?
- It blocks malicious traffic from reaching the web server
- It encrypts DNS queries between the user and Route 53
- It automatically scales the number of web servers based on demand
- It periodically tests whether an endpoint is responding, so Route 53 can route traffic away from unhealthy endpoints
- A — Blocking malicious traffic is the role of AWS WAF, security groups, or Shield — not a DNS health check.
- B — Encrypting DNS is unrelated; a health check only monitors endpoint reachability.
- C — Scaling servers up or down is done by EC2 Auto Scaling, not by Route 53 health checks.
Q12 A company already uses an Application Load Balancer to distribute requests across many EC2 instances in one Region. They now ask whether Route 53 will further "balance the load across those instances." What is the most accurate response?
- Yes, Route 53 replaces the load balancer and distributes requests to each instance
- Yes, Route 53 monitors CPU on each instance and routes to the least busy one
- No, because Route 53 cannot work together with a load balancer at all
- No, Route 53 handles DNS-level routing of names to endpoints; balancing requests across instances is the load balancer's job
- A — Route 53 does not replace a load balancer; it cannot distribute individual requests to instances behind an ALB.
- B — Route 53 does not inspect instance CPU or pick the least busy server — that is not how DNS works.
- C — Route 53 absolutely works alongside a load balancer; an alias record commonly points a domain at an ALB.
Q13 An online service wants users routed to resources based on the geographic distance between the user and the resource, with the ability to deliberately shift more traffic toward one location by adjusting a bias value. Which routing policy provides this?
- Geoproximity routing
- Geolocation routing
- Latency-based routing
- Weighted routing
- B — Geolocation routes by the user's country/continent/state, not by calculated distance, and it has no bias control.
- C — Latency routing chooses the fastest network path, not physical distance, and offers no bias setting.
- D — Weighted routing splits by fixed percentages and has no concept of geographic distance.
Q14 A developer needs to simply map www.example.com to a single fixed IP address with no failover, no weighting, and no location logic. Which routing policy is the appropriate, lowest-complexity choice?
- Failover routing
- Weighted routing
- Simple routing
- Latency-based routing
- A — Failover routing adds a primary/backup arrangement with health checks, which is unneeded here.
- B — Weighted routing is for splitting traffic by percentage, which the scenario explicitly does not want.
- D — Latency routing involves multiple Regions and speed measurement, far more than a single fixed mapping requires.
Q15 A global company already serves cached static content through CloudFront, but also wants users automatically directed to a healthy Region if their nearest application Region goes down. Which service should handle the automatic Region failover?
- Amazon CloudFront, by caching the backup Region's content
- Amazon Route 53, using failover routing with health checks
- Amazon S3, by replicating the website to all Regions
- AWS Lambda, by detecting the outage and rerouting users
- A — CloudFront caches and delivers content; it is not the service that performs DNS-level Region failover based on health checks.
- C — S3 replication copies objects between buckets but does not redirect users to a healthy Region during an outage.
- D — Lambda runs code on events but is not the standard, managed way to perform DNS failover — Route 53 is purpose-built for this.
Q16 Which statement most accurately captures the core role of Amazon Route 53 within the AWS networking stack?
- It is a managed DNS service that translates domain names into IP addresses and routes users to endpoints, and can also register domains and run health checks
- It is a content delivery network that caches files at edge locations to reduce latency
- It is a load balancer that distributes incoming requests evenly across EC2 instances
- It is a virtual private network service that connects on-premises data centers to AWS
- B — Caching files at edge locations describes CloudFront, the CDN, not Route 53.
- C — Distributing requests across instances is the role of Elastic Load Balancing.
- D — Connecting on-premises networks to AWS is the job of AWS Site-to-Site VPN or Direct Connect.