Consider a data communications system that represents characters using ASCII with odd parity. Each 7-bit ASCII character is followed by a parity bit.
Specify the resulting 8-bit code word for each of the characters in the following message that is to be transmitted:
IAcademy!
(The characters in this message, including the exclamation mark.)
Using a Table of ASCII Characters, I converted the ASCII character "c" from 0x63 to binary: 0110 0011
There are an even number of 1's.
1) Where do I add the parity bit (prefix or suffix)?
2) Adding a parity bit to make the number of 1's odd will result to 9-bits. How do I keep it to 8-bits?