What is a parity bit?
A bit which can detect corruption in data by observing whether the amount of 1’s is even or odd.
What is Check Sum Error Detection?
CS involves adding each bit together an then dividing it by 256 and observing the remainder. This is then stored and checked after transmission.
What is Cyclic Redundancy Checking?
All bits are treated as a single binary number. The mod of this is then stored (16 or 32 bit).
What is the most effective form of error detection?
Cyclic Redundancy Checking (CRC)
What is the lease effective form of error detection?
Parity Bits