128k views
17 votes
How many bits are used to encode a character according to the ascii encoding scheme?.

User Emson
by
5.1k points

1 Answer

2 votes

Answer:

All ASCII character sets have exactly 128 characters, thus only 7-bits are required to represent each character as an integer in the range 0 to 127 (0x00 to 0x7F). If additional bits are available (most systems use at least an 8-bit byte), all the high-order bits must be zeroed.

User Pavan Keerthi
by
5.5k points