Difficulty: Easy
Correct Answer: DNS
Explanation:
Introduction / Context:
The Internet relies on a service that converts domain names into IP addresses so that clients can connect to servers without memorizing numeric values. This translation is fundamental for web browsing, email delivery, and most networked applications.
Given Data / Assumptions:
Concept / Approach:
The Domain Name System (DNS) provides hierarchical, distributed name resolution. A resolver queries recursive or authoritative servers, receives an IP address, and allows applications to establish network connections transparently to the user.
Step-by-Step Solution:
Verification / Alternative check:
Use ping www.example.com and observe it resolves to IP. Check system resolvers in /etc/resolv.conf or with systemd-resolve --status.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
DNS.
Discussion & Comments