83.9k views
2 votes
How many bits must be “flipped” (i.e., changed from 0 to 1 or from 1 to 0) in order to capitalize a lowercase ‘a’ that’s represented in ASCII?

User Arlene
by
7.7k points

1 Answer

4 votes

To capitalize lowercase “a” which is 0110001 which is “A” you will need to flip the following bites 01000001 as represented in ASCII. Since we are only looking at 2bit digit which is 0 and 1 which has a 256 possible combinations from 0 up to 255.


User Imcg
by
8.3k points