reopened by
794 views
1 votes
1 votes

Bit stuffing refers to

  1. Inserting a $’0’$ in user data stream to differentiate it with a flag
  2. Inserting a $’0’$ in flag stream to avoid ambiguity
  3. Appending a nibble to the flag sequence
  4. Appending a nibble to the user data stream
reopened by

2 Answers

1 votes
1 votes

Purpose of Bit Stuffing

In Data Link layer, the stream of bits from the physical layer is divided into data frames. The data frames can be of fixed length or variable length. In variable - length framing, the size of each frame to be transmitted may be different. So, a pattern of bits is used as a delimiter to mark the end of one frame and the beginning of the next frame. However, if the pattern occurs in the message, then mechanisms needs to be incorporated so that this situation is avoided.

So A is correct.

Ref: https://www.tutorialspoint.com/what-is-bit-stuffing-in-computer-networks

 

0 votes
0 votes
1)The term "bit stuffing" broadly refers to a technique whereby extra bits are added to a data stream, which do not themselves carry any information, but either assist in management of the communications or deal with other issues.
2)The receiver knows how to detect and remove or disregard the stuffed bits
Answer:

Related questions

769
views
2 answers
1 votes
admin asked Apr 1, 2020
769 views
Bit stuffing refers toInserting a $’0’$ in user data stream to differentiate it with a flagInserting a $’0’$ in flag stream to avoid ambiguityAppending a nibble to the flag sequenceAppending a nibble to the user data stream
1.0k
views
1 answers
0 votes
admin asked Apr 1, 2020
1,010 views
The address of a class $B$ Host is to be split into subnets with a $3$-bit subnet number. What is the maximum number of subnets and maximum number of hosts in ... and $262142$ hosts$6$ subnets and $1022$ hosts$8$ subnets and $1024$ hosts
1.2k
views
2 answers
0 votes
admin asked Apr 1, 2020
1,208 views
The maximum data rate of a channel of $3000$-Hz bandwidth and SNR of $30$ db is$60000$15000$30000$3000$
1.0k
views
1 answers
0 votes
admin asked Apr 1, 2020
1,006 views
The question is based on the following program fragment.f(intY[10],int x){ int u,j,k; i=0;j=9; do{ k=(i+j)/2; if(Y[k] < x) i=k; else j=k; } while((Y[k]!=x) && (i<j)) ... $[2\;4\;6\;8\;10\;12\;14\;16\;18\;20]$ and $2<x<20$ and $'x'$ is even