ASCII AND UNICODE Flashcards
How many characters can be represented in standard ASCII?
128 (accept 127 + NULL)
Standard ASCII uses 7 bits for character representation.
What is the ASCII character code for ‘W’?
87
‘W’ is the 23rd letter of the English alphabet.
What is the character code for ‘Y’?
89
‘Y’ is two places later in the alphabet than ‘W’.
How many characters can fit into an Extended ASCII character set?
256 (accept 255 + NULL)
Extended ASCII uses 8 bits for character representation.
Explain how Extended ASCII can include additional characters while still using the same amount of memory per character as Standard ASCII.
Standard ASCII uses 7 bits; Extended ASCII uses the 8th bit for additional characters.
This allows Extended ASCII to represent more characters without increasing memory usage.
What is the purpose of extended ASCII character sets?
To represent characters that are uncommon or do not exist in the English language.
Each language group has its own Extended ASCII set for unique characters.
Why are there more than one Extended ASCII sets?
Each language group has its own Extended ASCII set to represent its unique characters.
Variability in language requirements leads to the development of multiple sets.