Given the data word 1010011110 and the divisor 10111 show th
     Given the data word 1010011110 and the divisor 10111, show the generation of the CRC, codeword at the sender using binary division. 
  
  Solution
1010011110 input
 10111 Starting from first 1 do the XOR of the bits and copy other bits as it is
 0001111110
 10111
 0000100010
 101110
 0000011100
 10111
 0000001011 -- stops as divisor becomes zero
CRC = 1011

