Question:medium

Consider the following two statements.
\[ S_1 : \text{Destination MAC address of an ARP reply is a broadcast address.} \] \[ S_2 : \text{Destination MAC address of an ARP request is a broadcast address.} \] Which one of the following choices is correct?

Show Hint

ARP requests are broadcast because the destination MAC is unknown, while ARP replies are unicast.
Updated On: Jan 30, 2026
  • Both \(S_1\) and \(S_2\) are true.
  • \(S_1\) is true and \(S_2\) is false.
  • \(S_1\) is false and \(S_2\) is true.
  • Both \(S_1\) and \(S_2\) are false.
Show Solution

The Correct Option is C

Solution and Explanation

Step 1: Analyze ARP request behavior.
An ARP request is generated when a host knows the IP address of a destination but does not know its MAC address.

Since the destination MAC address is unknown, the ARP request must be sent to all hosts in the local network.

Hence, an ARP request is sent as a broadcast frame, making statement S2 true.


Step 2: Analyze ARP reply behavior.
An ARP reply is sent by the host whose IP address matches the request.

At this point, the responder knows the MAC address of the requester (from the ARP request), so the reply is sent directly to that host.

Therefore, an ARP reply is a unicast frame, not a broadcast, making statement S1 false.


Final Conclusion:
S1 is false and S2 is true.

Final Answer: (C)

Was this answer helpful?
0