Parity check
Parity check is use to check error of the data send. When data is send from source to receiver , data may lose or having error. The receiver will receive error data. There are 2 types of error: Single bit error- Only one bit is changed from 1 to 0 or from 0 to 1. Burst error- 2 or more bits in the data unit have changed. For the receiver to ensure the data send is correct , error detection is use. Error detection uses the concepts of redundancy, which means adding extra bits detecting error of the destination. Parity check is the simplest technique in error detection techniques. A redundant bit is appended (added at the end of the data) to every data unit.The parity also have 2 type which are odd parity and even parity. Even Parity is the total number of 1's in data plus parity bit must be an even number while the Old parity is odd number. Example of even parity: Data #1's in data Parity bit(P) # 1's (data + P) 0110110 4(even) 0 4(even) 0011111 5(od...