Multiple choice technology operating systems

On Windows, You can check the ip address of your computer by using the following command

  1. Ipconfig

  2. ifconfig

  3. Arp

  4. ping

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

ipconfig is the Windows command to display IP configuration. ifconfig is used in Unix/Linux, ARP shows MAC address mappings, and ping tests connectivity. ipconfig shows IP address, subnet mask, and default gateway.

AI explanation

On Windows, 'ipconfig' is the built-in command-line utility that displays the current TCP/IP network configuration, including the IP address, subnet mask, and default gateway for each network adapter. 'ifconfig' is the equivalent command on Unix/Linux/macOS systems, not Windows, so it's the wrong platform. 'arp' displays/manipulates the ARP cache (IP-to-MAC address mappings), not the local IP address. 'ping' tests connectivity/reachability to another host and doesn't report the local machine's own IP configuration.