Definition

Parity check is an error-detecting technique in which an extra bit (parity bit) is added to each data unit. It is a simple method of identifying errors in data transmission and storage.

How Parity Checking Works

Assume a data transfer sequence looks like this: 1010001. In this instance, there are an even number of 0s and an odd number of 1s.

If you use an even parity checking, you could add a parity bit of 1 to make the 1s even, and the transmission would look like 10100011. On the other hand, if you use an odd parity check, the transmission would look like this: 10100010.

Advantages of Parity Checking

Disadvantages of Parity Check