53 53 votes The message $11001001$ is to be transmitted using the CRC polynomial $x^3 +1$ to protect it from errors. The message that should be transmitted is: $11001001000$ $11001001011$ $11001010$ $110010010011$ Computer Networks gatecse-2007 computer-networks error-detection crc-polynomial normal isro2016 + – Kathleen 45.4k views answer comment Share Follow Print See all 8 Comments 8 8 Comments reply Show 5 previous comments ritiksri8 commented May 23, 2024 reply Follow flag (B) 0 0 replyShare js__ commented Nov 12, 2025 reply Follow flag perform XOR each time 0 0 replyShare chidambareswar23 commented Apr 23 reply Follow flag All questions related to CRC Polynomial:Computer Networks: GATE CSE 2007 | Question: 68, ISRO2016-73Computer Networks: GATE CSE 2017 Set 1 | Question: 32Computer Networks: GATE CSE 2021 Set 2 | Question: 34Computer Networks: GATE IT 2005 | Question: 78Computer Networks: GATE CSE 2026 | Set 2 | Question: 33 0 0 replyShare Please log in or register to add a comment.
Best answer 81 81 votes Answer - B. Degree of generator polynomial is $3$ hence $3\text{-bits}$ are appended before performing division After performing division using $2's$ complement arithmetic remainder is $011$ The remainder is appended to original data bits and we get $M' = 11001001\bf{011}$ from $M = 11001001.$ Courtesy, Anurag Pandey ankitrokdeonsns answered Feb 2, 2015 • edited Jun 13, 2021 by S k Rawani ankitrokdeonsns comment Share Follow See all 9 Comments 9 9 Comments reply Show 6 previous comments Harshada commented Jan 1, 2019 reply Follow flag @Sumaiya23 Since the degree of CRC polynomial is 3 that's why 3 bits are appended. 3 3 replyShare Apoorva Jain commented Jan 11, 2019 reply Follow flag In polynmial method , We continue to divide until degree of rmainder is less than degree of divisor => x3 degree 3 so remainder of the form x2 + x + 1 , hence 3 bits. 0 0 replyShare vxi lin commented Aug 3, 2025 reply Follow flag thank you @Pratik Gawali this was my doubt and you cleared it up beautfully! 0 0 replyShare Please log in or register to add a comment.
5 5 votes B option is correcti think this method is easier and have less chances of mistakes piyushprajpti answered Dec 28, 2025 piyushprajpti comment Share Follow 0 reply Please log in or register to add a comment.
3 3 votes The length of the CRC remainder is always equal to the degree of the generator polynomial.In this case:Generator polynomial: x³ + 1Binary form of the generator: 1001Degree of the polynomial = 3👉 So the CRC remainder must be exactly 3 bits long, no more and no less. Prafull_Singh answered Jun 3, 2025 Prafull_Singh comment Share Follow 0 reply Please log in or register to add a comment.
1 1 vote The given generator polynomial is $G(x) = x^3 + 1$.This represents bits at positions $x^3$, $x^2$, $x^1$, and $x^0$.Since we have $1 \cdot x^3 + 0 \cdot x^2 + 0 \cdot x^1 + 1 \cdot x^0$, the binary divisor is 1001.Some important points:Degree of Polynomial ($n$): The highest power is 3.Number of Appended Bits: In CRC, we append exactly $n$ zeros (the degree of the polynomial) to the message before dividing.The CRC Length: The resulting remainder (the CRC) will also be 3 bits long.Analyzing the Options:Original Message: 11001001 (8 bits).Option D (110010010011): This has 4 extra bits (0011). We only need 3. Eliminated.Option C (11001010): This is only 8 bits long. It hasn't appended a CRC at all. Eliminated.Option A (11001001000): This just shows the message with 3 zeros appended (000). This is what the message looks like before division, not after the CRC is calculated. Eliminated.Option B (11001001011): This has exactly 3 extra bits (011) appended to the original 8-bit message. Correct.Therefore, option (B) is correct. Hira Thakur answered Jan 20 Hira Thakur comment Share Follow 0 reply Please log in or register to add a comment.
0 0 votes akshay_123 answered Apr 4 akshay_123 comment Share Follow 0 reply Please log in or register to add a comment.
0 0 votes Here is the answers, convert the polynomial CRC generator or divisor into bits, then proceed Skyquake._ answered Jul 6 Skyquake._ comment Share Follow 0 reply Please log in or register to add a comment.