Recall & Review
beginner
What is the main goal of reliable data transfer mechanisms in networking?
The main goal is to ensure data is delivered accurately and in order, without loss or duplication, despite errors or network issues.
Click to reveal answer
beginner
What does the 'stop-and-wait' protocol do in reliable data transfer?
It sends one data packet and waits for an acknowledgment before sending the next, ensuring each packet is received correctly before proceeding.
Click to reveal answer
intermediate
How does the 'sliding window' protocol improve data transfer efficiency?
It allows multiple packets to be sent before needing an acknowledgment, increasing throughput by using a window of packets that can be sent and acknowledged in sequence.
Click to reveal answer
beginner
What role do acknowledgments (ACKs) play in reliable data transfer?
ACKs confirm receipt of data packets, helping the sender know which packets arrived successfully and which need retransmission.
Click to reveal answer
beginner
Why is retransmission important in reliable data transfer mechanisms?
Retransmission ensures lost or corrupted packets are sent again, so the receiver eventually gets all data correctly.
Click to reveal answer
Which protocol waits for an acknowledgment after sending each packet before sending the next?
✗ Incorrect
Stop-and-wait sends one packet and waits for an ACK before sending the next, ensuring reliability.
What does an acknowledgment (ACK) signal in reliable data transfer?
✗ Incorrect
An ACK tells the sender that the packet arrived correctly and no retransmission is needed.
How does the sliding window protocol increase data transfer speed?
✗ Incorrect
Sliding window allows multiple packets to be sent before waiting for acknowledgments, improving throughput.
What happens if a packet is lost during transmission in a reliable data transfer system?
✗ Incorrect
Lost packets are retransmitted to ensure all data is received correctly.
Which of the following is NOT a feature of reliable data transfer?
✗ Incorrect
Data encryption is about security, not reliability; reliable data transfer focuses on error detection, acknowledgments, and retransmission.
Explain how the stop-and-wait protocol ensures reliable data transfer.
Think about how the sender waits before sending more data.
You got /3 concepts.
Describe the advantages of the sliding window protocol over stop-and-wait.
Consider how sending more than one packet at once helps speed.
You got /4 concepts.