Go Back N Window Sizes Explained | Generated by AI

Home 2026.02

Question: In the Go-Back-N sliding window protocol, what are the sizes of the sending window and receiving window?

Answer:

Go-Back-N (GBN) Protocol — Window Sizes

The correct answer is B: Sending Window > 1, Receiving Window = 1


Explanation of All Three Sliding Window Protocols

Protocol Sending Window Receiving Window
Stop-and-Wait = 1 = 1
Go-Back-N (GBN) > 1 = 1
Selective Repeat (SR) > 1 > 1

Why Go-Back-N Has Receiving Window = 1?

Go-Back-N allows the sender to transmit multiple frames without waiting for acknowledgment (sending window > 1), but the receiver only accepts frames in strict sequential order.

Why NOT Option C (both > 1)?

Option C describes the Selective Repeat (SR) protocol, not Go-Back-N. In SR:

Summary

Go-Back-N trades off receiver buffer simplicity (window = 1, no buffering needed) against retransmission efficiency (must resend multiple frames on error). This is the key distinction from Selective Repeat.


Back Donate