Ask Question
11 May, 13:21

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?

+2
Answers (1)
  1. 11 May, 16:20
    0
    Lowercase a is decimal 97; upper case is decimal 65

    It's easier to think of them in octal, however: a = octal 141, and A is octal 101

    octal to binary is easy, each digit is three bits.

    141 = 001 100 001

    101 = 001 000 001

    So, how many bits are changed above?
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “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? ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers