Report IR
Report IR
Introduction
In digital communication, data is transmitted between devices across networks. However,
errors can occur due to interference, signal degradation, or hardware failures. To ensure data
integrity, error detection techniques are used. One such method is the Parity Check Method, a
simple yet effective technique for detecting errors in transmitted data.
How It Works
● Even Parity: The parity bit is set so that the total number of 1s in the data (including
the parity bit) is even.
● Odd Parity: The parity bit is set so that the total number of 1s in the data (including the
parity bit) is odd.
When the data reaches the receiver, the system checks if the parity condition is met. If not, it
means an error has occurred during transmission.
● The number of 1s is three (odd), so the parity bit is set to 1 to make it even.
● The transmitted data becomes 10111.
● If the received data is not following the even parity rule, an error is detected.
Limitations:
Real-Life Applications
● Data transmission in networks: Used in protocols like UART (Universal Asynchronous
Receiver-Transmitter) and Ethernet.
● Memory storage systems: Simple parity checks help detect errors in RAM.
● Barcode and QR code scanning: Some systems use parity bits to verify data accuracy.
● Satellite and wireless communication: Used to detect transmission errors over long
distances.