Understanding NIC Cards and Their Addresses
A Network Interface Card (NIC), also known as a network adapter or LAN adapter, is a piece of computer hardware that connects a computer to a computer network. Every NIC card needs a unique identifier to communicate effectively on a network, especially at the data link layer.
MAC Address vs. IP Address
There are two primary types of addresses associated with network communication:
- MAC Address (Media Access Control Address): This is a physical address, a unique identifier assigned to network interfaces for communications within a network segment. It is assigned by the manufacturer of the NIC card.
- IP Address (Internet Protocol Address): This is a logical address used for routing data across networks (like the internet). IP addresses can be assigned dynamically (via DHCP) or statically configured. They identify a device's connection to a specific network.
The question asks for a unique address that is "burned into" the NIC card. Let's consider where these addresses are stored.
Where are NIC Card Addresses Stored?
- MAC Address: The MAC address is permanently stored on the NIC card itself. It is typically embedded in the card's firmware, often in a Read-Only Memory (ROM) chip during the manufacturing process. Because it's in ROM, it cannot be easily changed by the user. This permanent storage ensures each NIC has a unique identity from the moment it's made.
- IP Address: The IP address is associated with the network configuration of the operating system, not permanently burned into the NIC hardware. It resides in the computer's memory (RAM) while the network connection is active and is handled by the operating system's network stack. IP addresses can change depending on the network the device connects to or the dynamic assignment mechanism (like DHCP).
Therefore, the unique address that is permanently stored ("burned into") the NIC card's ROM is the MAC address.
Based on this understanding, the correct statement identifies the MAC address as the unique address burned into ROM.