SlideShare uma empresa Scribd logo
1 de 14
Team: 1 
5th A BVBCSE 
2012-2016
Introduction 
o Stop-and-wait ARQ is a method used 
in telecommunications to send 
information between two connected 
devices. 
o It ensures that information is not 
lost due to dropped packets and that 
packets are received in the correct 
order. 
o It is the simplest kind of automatic 
repeat-request (ARQ) method.
Description 
 A stop-and-wait ARQ sender sends 
one frame at a time. 
 It is a special case of the general sliding window 
protocol with both transmit and receive window 
sizes equal to 1. 
 After sending each frame, the sender doesn't 
send any further frames until it receives 
an acknowledgement (ACK) signal. 
 After receiving a good frame, the receiver 
sends an ACK. 
 If the ACK does not reach the sender before a 
certain time, known as the timeout, the sender 
sends the same frame again.
 Typically the transmitter adds 
a redundancy check number to the end of 
each frame. 
 The receiver uses the redundancy check 
number to check for possible damage. If 
the receiver sees that the frame is good, 
it sends an ACK. 
 If the receiver sees that the frame is 
damaged, the receiver discards it and does 
not send an ACK—pretending that the 
frame was completely lost, not merely 
damaged.
Need for sequence numbers 
o 1 bit sequence number in the header of the 
frame, alternating (from 0 to 1) in subsequent 
frames. 
o When the receiver sends an ACK, it includes the 
sequence number of the next packet it expects. 
This way, the receiver can detect duplicated 
frames by checking if the frame sequence 
numbers alternate. 
o If two subsequent frames have the same 
sequence number, they are duplicates, and the 
second frame is discarded. Similarly, if two 
subsequent ACKs reference the same sequence 
number, they are acknowledging the same frame.
Case 1 
 Sender sends the frame 0 to the destination 
and simultaneously a timer is started. 
 The destination accepts the frame since it was 
expecting frame 0. 
 Now the receiver window slides one position 
ahead. 
 Receiver sends an acknowledgement ACK 1 
informing the sender that it has successfully 
received frame 0 and is expecting for frame 1. 
 This acknowledgement reaches sender before 
the timer of frame 0 expires and Sending 
window slides to the next frame and sends 
frame1. 
 See the animation for better understanding.
Request 
Sn 
0 1 0 1 0 1 
0 1 0 1 0 1 
Arrived 
Sn 
0 1 0 1 0 1 
Rn 
Sender Receiver 
Start 
Stop 
Arrived
Case 2 
 Sender sends frame 0 to the destination 
and simultaneously timer is started. 
 Frame 0 is lost before reaching the 
destination. 
 Since destination didn’t receive frame 0 
no acknowledgement is sent. 
 Eventually timer for frame 0 expires and 
sender resends frame 0. 
 This process continues until it reaches 
acknowledgement for frame 1. 
 See the animation in the next slide for 
better understanding.
Request 
0 1 0 1 0 1 
0 1 0 1 0 1 
0 1 0 1 0 1 
0 1 0 1 0 1 
timeout 
Arrived 
Sn 
Sn 
Rn 
Arrived 
Stop
Case 3 
 Sender sends frame 0 to the destination and 
simultaneously timer is started. 
 The destination accepts the frame since it was 
expecting frame 0. 
 Now the receiver window slides one position ahead. 
 Receiver sends an acknowledgement ACK 1 informing 
the sender that it has successfully received frame 0 
and is expecting for frame 1. 
 The acknowledgement gets lost and it doesn’t reach the 
sender. 
 Eventually timer for frame 0 expires and sender 
resends frame 0. 
 Now since the receiver is expecting for frame 1, it will 
safely discard the frame 0 and once again sends 
acknowledgement ACK 1.
Sn Request 
010101 
Start 
Rn 
0 1 0 1 0 1 
Arrived 
ACK 1 
Sn 
010101 Lost 
0 1 0 1 0 1 
Arrived 
Sn 
0 1 0 1 0 1 
Rn 
Discard, Duplicate 
timeout 
Stop
Advantages of stop-and-wait 
ARQ over simple 
stop and wait protocols 
 It can be used for noisy channels. 
 It has both flow and error control 
mechanism. 
 It has timer implementation.
Disadvantages of Stop and 
wait ARQ 
 Efficiency is very less. 
 Only one frame is sent at a time. 
 Timer should be set for each 
individual frame. 
 No pipelining. 
 Sender window size is 
one(disadvantage over go back and 
ARQ). 
 Receiver window size is 
one(disadvantage over selective 
repeat ARQ).
 By- 
 Pushkar D 
 Praneeta Y 
 Amith A 
 Komal S 
 Pallavi D 
 Chaitra H 
 Ambaresh P 
 Ankit R 
Thank you

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

Transport layer protocols : Simple Protocol , Stop and Wait Protocol , Go-Bac...
Transport layer protocols : Simple Protocol , Stop and Wait Protocol , Go-Bac...Transport layer protocols : Simple Protocol , Stop and Wait Protocol , Go-Bac...
Transport layer protocols : Simple Protocol , Stop and Wait Protocol , Go-Bac...
 
Congestion control
Congestion controlCongestion control
Congestion control
 
Stop and-wait protocol
Stop and-wait protocolStop and-wait protocol
Stop and-wait protocol
 
Multiple access protocol
Multiple access protocolMultiple access protocol
Multiple access protocol
 
Selective repeat protocol
Selective repeat protocolSelective repeat protocol
Selective repeat protocol
 
Sliding window protocol(ARQ technique)
Sliding window protocol(ARQ technique)Sliding window protocol(ARQ technique)
Sliding window protocol(ARQ technique)
 
Distance vector routing
Distance vector routingDistance vector routing
Distance vector routing
 
Flow Control
Flow ControlFlow Control
Flow Control
 
Sliding window protocol
Sliding window protocolSliding window protocol
Sliding window protocol
 
Flow control & error control
Flow control & error controlFlow control & error control
Flow control & error control
 
The medium access sublayer
 The medium  access sublayer The medium  access sublayer
The medium access sublayer
 
data-link layer protocols
data-link layer protocols  data-link layer protocols
data-link layer protocols
 
Routing algorithm
Routing algorithmRouting algorithm
Routing algorithm
 
Token bus
Token busToken bus
Token bus
 
Introduction to Data-Link Layer
Introduction to Data-Link LayerIntroduction to Data-Link Layer
Introduction to Data-Link Layer
 
Point to-point protocol (ppp)
Point to-point protocol (ppp)Point to-point protocol (ppp)
Point to-point protocol (ppp)
 
Data link layer
Data link layer Data link layer
Data link layer
 
IEEE 802.11 Architecture and Services
IEEE 802.11 Architecture and ServicesIEEE 802.11 Architecture and Services
IEEE 802.11 Architecture and Services
 
GO BACK N PROTOCOL
GO BACK N PROTOCOLGO BACK N PROTOCOL
GO BACK N PROTOCOL
 
TCP protocol flow control
TCP protocol flow control TCP protocol flow control
TCP protocol flow control
 

Semelhante a Stop-and-Wait ARQ Protocol

Semelhante a Stop-and-Wait ARQ Protocol (20)

session -7 - Sliding Window Protocol 1- N oisy Channels.ppt
session -7 - Sliding Window Protocol 1- N oisy Channels.pptsession -7 - Sliding Window Protocol 1- N oisy Channels.ppt
session -7 - Sliding Window Protocol 1- N oisy Channels.ppt
 
Flow control main
Flow control mainFlow control main
Flow control main
 
Computer network slides for easy prepration
Computer network slides for easy preprationComputer network slides for easy prepration
Computer network slides for easy prepration
 
8th lec flow and error control
8th lec   flow and error control8th lec   flow and error control
8th lec flow and error control
 
Protocols
ProtocolsProtocols
Protocols
 
PROTOCOL ICT.pptx
PROTOCOL ICT.pptxPROTOCOL ICT.pptx
PROTOCOL ICT.pptx
 
Lecture 23
Lecture 23Lecture 23
Lecture 23
 
Simplex stop and_wait_protocol
Simplex stop and_wait_protocolSimplex stop and_wait_protocol
Simplex stop and_wait_protocol
 
Go back.pptx
Go back.pptxGo back.pptx
Go back.pptx
 
Micro project on ARQ
Micro project on ARQMicro project on ARQ
Micro project on ARQ
 
Lecture 20
Lecture 20Lecture 20
Lecture 20
 
Presentation on dll
Presentation on dllPresentation on dll
Presentation on dll
 
Cse3213 11 flow_errorcontrol_f2010
Cse3213 11 flow_errorcontrol_f2010Cse3213 11 flow_errorcontrol_f2010
Cse3213 11 flow_errorcontrol_f2010
 
Flowctrl
FlowctrlFlowctrl
Flowctrl
 
Unit IV_Flow.pptx
Unit IV_Flow.pptxUnit IV_Flow.pptx
Unit IV_Flow.pptx
 
Arq protocol part 2
Arq protocol part 2Arq protocol part 2
Arq protocol part 2
 
Advance Repeat reQuest (ARQ)
Advance Repeat reQuest (ARQ)Advance Repeat reQuest (ARQ)
Advance Repeat reQuest (ARQ)
 
6 data linkcontrol
6  data linkcontrol6  data linkcontrol
6 data linkcontrol
 
Different protocols for data communication networks
Different protocols for data communication networks Different protocols for data communication networks
Different protocols for data communication networks
 
Lecture 24
Lecture 24Lecture 24
Lecture 24
 

Último

BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxfenichawla
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringmulugeta48
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdfSuman Jyoti
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...SUHANI PANDEY
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...tanu pandey
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)simmis5
 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Christo Ananth
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 

Último (20)

BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 

Stop-and-Wait ARQ Protocol

  • 1. Team: 1 5th A BVBCSE 2012-2016
  • 2. Introduction o Stop-and-wait ARQ is a method used in telecommunications to send information between two connected devices. o It ensures that information is not lost due to dropped packets and that packets are received in the correct order. o It is the simplest kind of automatic repeat-request (ARQ) method.
  • 3. Description  A stop-and-wait ARQ sender sends one frame at a time.  It is a special case of the general sliding window protocol with both transmit and receive window sizes equal to 1.  After sending each frame, the sender doesn't send any further frames until it receives an acknowledgement (ACK) signal.  After receiving a good frame, the receiver sends an ACK.  If the ACK does not reach the sender before a certain time, known as the timeout, the sender sends the same frame again.
  • 4.  Typically the transmitter adds a redundancy check number to the end of each frame.  The receiver uses the redundancy check number to check for possible damage. If the receiver sees that the frame is good, it sends an ACK.  If the receiver sees that the frame is damaged, the receiver discards it and does not send an ACK—pretending that the frame was completely lost, not merely damaged.
  • 5. Need for sequence numbers o 1 bit sequence number in the header of the frame, alternating (from 0 to 1) in subsequent frames. o When the receiver sends an ACK, it includes the sequence number of the next packet it expects. This way, the receiver can detect duplicated frames by checking if the frame sequence numbers alternate. o If two subsequent frames have the same sequence number, they are duplicates, and the second frame is discarded. Similarly, if two subsequent ACKs reference the same sequence number, they are acknowledging the same frame.
  • 6. Case 1  Sender sends the frame 0 to the destination and simultaneously a timer is started.  The destination accepts the frame since it was expecting frame 0.  Now the receiver window slides one position ahead.  Receiver sends an acknowledgement ACK 1 informing the sender that it has successfully received frame 0 and is expecting for frame 1.  This acknowledgement reaches sender before the timer of frame 0 expires and Sending window slides to the next frame and sends frame1.  See the animation for better understanding.
  • 7. Request Sn 0 1 0 1 0 1 0 1 0 1 0 1 Arrived Sn 0 1 0 1 0 1 Rn Sender Receiver Start Stop Arrived
  • 8. Case 2  Sender sends frame 0 to the destination and simultaneously timer is started.  Frame 0 is lost before reaching the destination.  Since destination didn’t receive frame 0 no acknowledgement is sent.  Eventually timer for frame 0 expires and sender resends frame 0.  This process continues until it reaches acknowledgement for frame 1.  See the animation in the next slide for better understanding.
  • 9. Request 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 timeout Arrived Sn Sn Rn Arrived Stop
  • 10. Case 3  Sender sends frame 0 to the destination and simultaneously timer is started.  The destination accepts the frame since it was expecting frame 0.  Now the receiver window slides one position ahead.  Receiver sends an acknowledgement ACK 1 informing the sender that it has successfully received frame 0 and is expecting for frame 1.  The acknowledgement gets lost and it doesn’t reach the sender.  Eventually timer for frame 0 expires and sender resends frame 0.  Now since the receiver is expecting for frame 1, it will safely discard the frame 0 and once again sends acknowledgement ACK 1.
  • 11. Sn Request 010101 Start Rn 0 1 0 1 0 1 Arrived ACK 1 Sn 010101 Lost 0 1 0 1 0 1 Arrived Sn 0 1 0 1 0 1 Rn Discard, Duplicate timeout Stop
  • 12. Advantages of stop-and-wait ARQ over simple stop and wait protocols  It can be used for noisy channels.  It has both flow and error control mechanism.  It has timer implementation.
  • 13. Disadvantages of Stop and wait ARQ  Efficiency is very less.  Only one frame is sent at a time.  Timer should be set for each individual frame.  No pipelining.  Sender window size is one(disadvantage over go back and ARQ).  Receiver window size is one(disadvantage over selective repeat ARQ).
  • 14.  By-  Pushkar D  Praneeta Y  Amith A  Komal S  Pallavi D  Chaitra H  Ambaresh P  Ankit R Thank you