River A
River A
River A
ERROR DETECTION
Is the process of monitoring data transmission and determining when errors have occurred.
Redundancy Checking
Duplicating each unit for the purpose of detecting errors. Costly and inefficient.
For example..
1011 is to be transmitted.. The four-bit combination can be sent three times: 1011 1011 1011 However, if the received pattern was 1010 1011 1011 ERROR!
Example..
The Hex code for ASCII character R is 52, which is P1010010 in binary, where P designates the parity bit. Determine the Odd and Even parity bits.
Solution..
GIVEN: P1010010
Checksum
Each byte of the message that is transmitted is added (binary arithmetic), then the sum is compared with the receivers checksum.
Example..
What is the checksum value for the extended ASCII message Help!?
Solution..
01001000 01100101 01101100 01110000 00100001
H e l p !
00010000 Checksum
Is a redundancy error detection scheme that uses parity to determine if a transmission error has occurred within a message.
Example..