Difficulty: Easy
Correct Answer: Incorrect
Explanation:
Introduction / Context:This question checks whether you can distinguish Domain Name System (DNS) load balancing from lower-layer load-distribution techniques. DNS round-robin balances by handing out different IP addresses at name-resolution time, while layer-4 or layer-7 load balancers route traffic for a single virtual IP to multiple back-end servers.
Given Data / Assumptions:
Concept / Approach:DNS balancing operates at name resolution: clients receive one of several IPs. Routing or proxy-based load balancing operates after resolution, often using a single virtual IP that distributes traffic internally. The prompt conflates these approaches, attributing TCP/IP–level single-IP routing to DNS, which is inaccurate.
Step-by-Step Solution:
Identify what DNS does: map a name to one or more IP addresses.Recall how DNS balancing works: multiple records → clients hit different servers.Contrast with L4/L7 balancers: one virtual IP, internal distribution to many servers.Conclude: the described mechanism is not DNS balancing → statement is inaccurate.Verification / Alternative check:Check common architectures: “DNS round robin” vs “reverse proxy/ADC.” Only the latter uses one VIP to split traffic post-resolution.
Why Other Options Are Wrong:
Common Pitfalls:Confusing DNS round robin with VIP-based load balancers; assuming DNS is session-aware (it is not).
Final Answer:Incorrect
Discussion & Comments