Posts

Showing posts from 2011

This Time Says

Image
1. "  Am  always change  but you don`t move from the first position ,stand there, Am run with you.   "- Sri
Image

successsri: successsri:

Image
" Never Design your character like a garden ,where every one can walk ; Design your character like a sky where every one can aspire to reach it . "
Image

successsri: successsri:

Image
successsri: Love life and love Move Towards Success

successsri:

Image
Love life and love M ove T owards S uccess

successsri:

Image
  Have a Blessed Day....

successsri:

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...