CYCLIC REDUNDANCY CHECK AIM: To write a java program to implement cyclic redundancy check. ALGORITHM: 1. Start the program. 2. Import necessary packages. 3. Get an user input in the form of bit data ie string. 4. Get an generator data from the user. 5. Read the length of the string and convert the data into another format by deducing 48from it. 6. Now Add the generator data to the original data and send the string as transmitter string. 7. In the receiving end, enter the generator code. 8. Using the generator code, to the length of the received string, add 48 to the number format of the string by character. 9. If the generator string is wrong, display “message received with error”. 10. If the generator string is correct, perform step 8 and display “message received withno error”. 11. End the program SOURCE CODE: import java.io.*; import java.lang.*; public class crc{ public static void main(String args[]) throws IOExceptio...