When you type a website address like www.example.com in your browser, how does DNS help your computer find the website?
Choose the best description of the DNS resolution process.
Think about how computers use numbers (IP addresses) to find each other, not names.
DNS works by translating human-friendly domain names into IP addresses computers use. It does this by querying DNS servers in a hierarchical order: root servers, then top-level domain servers, and finally authoritative servers for the domain.
What is the main purpose of a DNS cache on your computer or network?
Think about how remembering something recently used can make things faster.
A DNS cache temporarily stores IP addresses of domain names recently looked up. This reduces the time needed for future requests to the same domain by avoiding repeated queries to DNS servers.
Given the following DNS record, what type of record is it and what does it do?
example.com. 3600 IN MX 10 mail.example.com.
Look at the record type abbreviation and think about email.
An MX (Mail Exchange) record tells mail servers where to deliver email for the domain. The number 10 is the priority of the mail server.
Which statement correctly describes the difference between recursive and iterative DNS queries?
Consider who does the work of finding the final answer in each query type.
Recursive queries require the DNS server to find the full answer and return it. Iterative queries return the best information the server has or a referral to another server for the client to query next.
If a website's DNS record has a very high TTL (Time To Live) value, what could be a potential downside when the website's IP address changes?
Think about how caching works and what happens when information changes.
A high TTL means DNS records are cached longer. If the IP changes, users with cached old records may not reach the new IP until the cache expires, causing delays in updates and possible downtime.