📜  门| GATE-CS-2015(套装1)|第 62 题

📅  最后修改于: 2021-09-24 05:09:07             🧑  作者: Mango

假设在比特率为每秒 64 千比特和传播延迟为 20 毫秒的链路上使用停止等待协议。假设确认的传输时间和节点处的处理时间可以忽略不计。那么要实现至少 50% 的链路利用率的最小帧大小(以字节为单位)是 _________。
(一) 160
(二) 320
(三) 640
(四) 220答案:(乙)
解释:

Transmission or Link speed = 64 kb per sec
Propagation Delay = 20 milisec

Since stop and wait is used, a packet is sent only
when previous one is acknowledged.

Let x be size of packet, transmission time = x / 64 milisec

Since utilization is at least 50%, minimum possible total time
for one packet is twice of transmission delay, which means 
x/64 * 2 = x/32

x/32 > x/64 + 2*20
x/64 > 40
x > 2560 bits = 320 bytes

GATE 键中的应答表示 160 字节,但应答键似乎不正确。请参阅此处的问题 36。
这个问题的测验