retagged by
16,597 views
4 votes
4 votes

In CRC checksum method, assume that given frame for transmission is 1101011011 and the generator polynomial is $G(x) = x^{4}+ x + 1$. After implementing $CRC$ encoder, the encoded word sent from sender side is _____.

  1. 11010110111110
  2. 11101101011011
  3. 110101111100111
  4. 110101111001111
retagged by

2 Answers

Best answer
4 votes
4 votes

Generator x 4 + x+ 1 can be written as 10011

append remainder 1110 to the actual word.

Encoded word will be (A) 11010110111110

selected by
1 votes
1 votes
option A is correct

CRC GENRATER :::::::: 10011

we append 0000 and data is    11010110110000

after xoring  

      11010110111110

Related questions

1 votes
1 votes
2 answers
1
3 votes
3 votes
1 answer
3