DEV Community

t3chflicks
t3chflicks

Posted on

AWS Solutions Architect Quiz 5 🎓 (DNS and Route53)

The AWS solutions architect certification shows that you can use AWS services to solve software engineering problems and understand core best practices of the industry. In this article, I will quiz you on some sections from the material required for the exam: DNS and Route53.

T3chFlicks offers quizzes to practice for your AWS Solutions Architect Exam — [Link](https://t3chflicks.org/Projects/aws-solutions-architect-quiz)*

T3chFlicks offers quizzes to practice for your AWS Solutions Architect Exam — Link*

I will now briefly state some key facts about DNS and the Route53 service, and then provide some example questions for the exam.

N.B: The following information on its own will not be enough to answer the questions.

DNS

Internet communication uses IP addresses. A Domain Name System allows human friendly names, such as https://T3chFlicks.org, to be translated into a network address (IP) of the CloudFront distribution server hosting the files. A fully qualified domain name (FQDN) is comprised of components, as shown in the following diagram:

Breakdown of Domain Name sub-components — [source](https://learning.oreilly.com/library/view/aws-certified-solutions/9781119138556/c09.xhtml)*

Breakdown of Domain Name sub-components — source*

DNS Resolution

The DNS system is hierarchical and follows a resolution processes to find the domain servers. These map the domain to IP address.

Steps required to resolve a domain name of a webpage — [Source](https://www.appneta.com/blog/101-what-is-dns-and-why-is-it-important/)*

Steps required to resolve a domain name of a webpage — Source*

  1. Your browser queries a resolving DNS server for an IP address of t3chflicks.org.

  2. If the resolving DNS server does not have the address, it performs the same query on a root server.

  3. If the root server response is that it doesn’t have the address either, it provides the .org TLD server address.

  4. The resolving server queries the TLD server. If the TLD server does not know the address of the domain name, it provides the address of the resolving name server.

  5. The resolving server then queries the resolving name server. The resolving name server contains the authoritative records and sends these to the resolving server.

  6. The resolving name server returns this information to the user’s web browser.

Route53

The Route53 service allows users to get a domain and manage their DNS as well as perform health checks.

It is also useful to know:

  • Hosted zone (zone file) is a collection of record sets and can be private or public.

  • Record Types: SOA, A /AAAA, CNAME, MX, NS, PR, SPF, TXT, SRV

  • An Alias Route is a special AWS record which allows mapping to AWS resource including CloudFront distributions.

  • Route53 offers weighted routing, latency-based routing and geolocation routing. It also offers failover routing, disaster recovery using different resources.

  • Elastic load balancer is available in every AWS region with cross-zone balancing.

Quiz 🎓

The quiz can also be accessed in full size here. These questions were sourced from multiple locations (mainly the certification sample test) over a long period of time.

Thanks For Reading

I hope you have enjoyed this article. If you like the style, check out T3chFlicks.org for more tech focused educational content (YouTube, Instagram, Facebook, Twitter).

We hope to cover the rest of the topics with similar articles very soon ⭐

Quiz 1

**AWS Solutions Architect Quiz 🎓(VPC, Load balancing, CloudWatch Autoscaling)
**T*he AWS solutions architect certification shows that you can use AWS services to solve software engineering problems…m*edium.com

Quiz 2

**AWS Solutions Architect Quiz 2 🎓 (S3, EC2, EBS)
**T*he AWS solutions architect certification shows that you can use AWS services to solve software engineering problems…m*edium.com

Quiz 3

**AWS Solutions Architect Quiz 3 🎓 (CloudFront, ElastiCache)
**T*he AWS solutions architect certification shows that you can use AWS services to solve software engineering problems…m*edium.com

Quiz 4

**AWS Solutions Architect Quiz 4🎓 (SQS, SNS)
**T*he AWS solutions architect certification shows that you can use AWS services to solve software engineering problems…m*edium.com

Quiz 6

**AWS Solutions Architect Quiz 6 🎓 (IAM)
**T*he AWS solutions architect certification shows that you can use AWS services to solve software engineering problems…t*3chflicks.medium.com

Top comments (0)