Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+20 votes

What exactly are we supposed to do? What code is being deciphered? How do we check if the data is encrypted?

asked in CSC335_Spring2019 by (1 point)

1 Answer

+9 votes

2b is basically asking you to verify that the CRC code you solved for in the previous question is correct. To do this, perform binary long addition with the original data, in this case 1010011, and the checksum as the divisor. If the data is not corrupted, there will be a remainder of zero after th long division is performed.

answered by (1 point)
...