Definition
A parity check is a simple error-detection method used in computer systems to ensure data integrity. It involves adding an extra bit (the parity bit) to a data unit to make the number of 1s either even (even parity) or odd (odd parity). Think of it as a basic way to catch mistakes in transmission 💻. The receiving system recalculates the parity and compares it to the transmitted parity bit. If they don’t match, it indicates an error occurred. It's a fundamental technique for detecting single-bit errors in data storage and transmission.