Difficulty: Easy
Correct Answer: 1110010
Explanation:
Introduction / Context:
Parity is a lightweight error-detection method used in memories, serial links, and legacy buses. With even parity, the parity bit is chosen so that the total count of 1s in the transmitted word (data + parity) is even. This question checks your ability to compute and append an even parity bit correctly.
Given Data / Assumptions:
Concept / Approach:
Count the 1s in the data and add 1 if the count is odd (to make it even). If the count is already even, add 0. Here we prepend the computed parity bit (consistent with the presented choices).
Step-by-Step Solution:
Verification / Alternative check:
Recount 1s in 1110010: there are 4 ones, which is even. If the system appended the bit at the LSB instead, the 7-bit sequence would be 1100101; however, the given options reflect the MSB placement, so 1110010 is the correct choice here.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
1110010
Discussion & Comments