Difficulty: Easy
Correct Answer: Parity checking is best suited for detecting single-bit errors in transmitted codes.
Explanation:
Introduction / Context:Parity bits provide a simple, low-overhead method for error detection in digital communication. They indicate whether the number of 1s in a code word is even or odd, enabling detection of many, but not all, error patterns.
Given Data / Assumptions:
Concept / Approach:With parity, any single-bit flip toggles the overall parity, making the error detectable. However, two-bit errors restore the original parity in an even-parity scheme, escaping detection. Thus, parity is primarily useful for single-bit error detection, not correction or multi-bit reliability guarantees.
Step-by-Step Reasoning:
Transmit code with parity (even/odd)Single-bit error changes parity ⇒ detectedTwo-bit error maintains parity ⇒ not detectedVerification / Alternative check:Consider a word with even count of 1s using even parity. Flipping two bits keeps the 1-count even. The receiver sees correct parity and accepts the frame, demonstrating the limitation.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:Parity checking is best suited for detecting single-bit errors in transmitted codes.
Discussion & Comments