Difficulty: Easy
Correct Answer: PING
Explanation:
Introduction:
When diagnosing network connectivity, the first step is often verifying whether a target host responds at the IP layer. Microsoft clients include a small utility that sends ICMP Echo Request messages and reports responses to confirm basic reachability and round-trip time. This question asks you to identify that universal, built-in tool.
Given Data / Assumptions:
Concept / Approach:
PING is the ubiquitous command that uses ICMP Echo Request/Reply to test reachability. It is present across Windows versions (with minor syntax variations) and is among the first tools admins run. By contrast, WINIPCFG existed on Windows 9x but not on all versions; DHCP and WINS are services/protocols, not command-line tools. Therefore, PING is the correct choice for a universally included test utility.
Step-by-Step Solution:
Verification / Alternative check:
Typical troubleshooting sequences begin with ping
, followed by ipconfig
, tracert
, and others. The presence of ping
on Windows, Linux, and macOS underscores its universality.
Why Other Options Are Wrong:
Common Pitfalls:
Interpreting a lack of ping replies as proof the host is down (ICMP can be filtered); forgetting to test DNS separately with nslookup
or ping
by IP vs name.
Final Answer:
PING.
Discussion & Comments