answersLogoWhite

0

What does 01000001 mean?

Updated: 9/16/2023
User Avatar

Wiki User

14y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What does 01000001 mean?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a decimal code for 01000001?

The decimal equivalent would be 65


What would a look like in binary form?

If you mean the character 'a', it has ANSI code 65 decimal therefore it will be 01000001 in binary, which is 0x41 in hex or 101 in octal.


What is the result of adding the binary numbers 01000001 and 11111111 on an 8 bit machine?

vivek


How many times can a 32-bit bus can handle versus the data bits as an 8-bit bus?

Lets put this one into a very tangible form. 8-Bit Bus: To process the text string "ABBA" an 8 bit bus will send the data like this(I'm using ABBA because its a band name and its very easy to write in binary): Instruction #1 [01000001] Instruction #2 [01000010] Instruction #3 [01000010] Instruction #4 [01000001] A 32-bit bus does lit like this: Instruction #1 [01000001];[01000010];[01000010];[01000001] At the most elemental scale, this would make a 32-bit bus 4 times faster than a 8-bit bus at the same frequency. More goes into it than this, however, and real-world numbers are never an exact representation of theoretical performance differences.


What is the ASCII code for a capital A?

Decimal: 65 Hexadecimal: 41 Octal: 101 Binary: 01000001 HTML: &.#.65; (without periods) Hope this answered your question!


How do the instructions that people write for computers transcribe into binary form?

Each symbol has a preassigned code. What you see as an A on your keyboard, the computer sees as 01000001. What you see as WikiAnswers, the computer sees as 01010111 01101001 01101011 01101001 01000001 01101110 01110011 01110111 01100101 01110010 01110011. There is a code for each capital letter, each lower case letter, each number, and each symbol. Whatever you enter already has a preassigned binary equal.


'A' is represented in the binary system as?

Most computers use ASCII (or some similar) encoding, in which 'A' is represented as 65, or 01000001 binary. Older IBM mainframes use an entirely different encoding.


What letters do binary code represent?

All letters can be represented in binary, however binary code is represented only by the numbers 0 and 1.


What does 1001000101100111009100 mean?

that means a code or serial number of some product


What bit must be completed to change ASCII letter from capital to small?

There is a 32 difference between upper case and lower case. For example A is 65 and a is 97. So the third bit, which has a value of 32, is the one to change. 01000001 = 65 01100001 = 97


What does 010110 mean in computer speak?

That is 22. Basicly, there are two types of binary: NUMBERS, and ALL. NUMBERS is like this: if you want to write 22 in binary then write it like this: 32 16 8 4 2 1 0 1 0 1 1 0 ALL is like this: If you are doing ALL then they are in groups of eight like this: 01000001 01110010 01110100 01110011 01101011 01111001 01100100 01001010


How does a computer convert letters to computer language?

Computers use Binary (Computer Language) which are a series of 1's and 0's. Each series of binary is 8 bits (1 byte) long and is unique to each letter. Example: A = 01000001 B = 01000010 C = 01000011