InterviewSolution
Saved Bookmarks
| 1. |
What is the message length ‘k’ of a Hamming(7,4) code?(a) 2^r-1(b) 2^r-r+1(c) 2^r-r-1(d) 2^r+1-r |
|
Answer» Right answer is (c) 2^r-r-1 Easiest explanation - Hamming codes are a class of binary linear codes, hence r>=2. For a hamming(7,4) code, the message length ‘k’ is 2^r-r-1 where r is the parity bit. Here, r=3. |
|