answersLogoWhite

0

What is the binary value of 133?

Updated: 8/11/2023
User Avatar

Wiki User

10y ago

Best Answer

The number 133 in Binary is 10000101

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

10y ago

It is 10000101

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the binary value of 133?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is the binary code for B?

That depends what you mean by "B", and what you mean by "binary code" assuming that by "binary code", you actually mean a binary representation of it's ascii value, then the answer is 1000010. The ascii value of the character "B" is 66 in decimal, which is 1000010 is that value in binary. If on the other hand, you mean "what is the binary value of the hexidecimal number B?", then the answer is 1011.


What is the binary number of the decimal value 181?

The binary values is 10110101.


How do you write a C program to convert a binary value to its octal equivalent?

To convert from binary to octal, bitwise AND the binary value with 0x8 (00000111 in binary) and push the value onto a stack. Right-shift (>>) the binary value by 3 bits and repeat until the binary value is zero. Pop the stack to build the left-to-right digits of the octal value. Using 10110100 as an example: 10110100 & 00000111 = 00000100 10110100 >> 3 = 00010110 00010110 & 00000111 = 00000110 00010110 >> 3 = 00000010 00000010 & 00000111 = 00000010 00000010 >> 3 = 00000000 Popping the values in order reveals 00000010, 00000110 and 00000100 (decimal 2, 6 and 4 respectively). Thus 10110100 binary is 0264 octal.


What is the binary equivalent value of77?

7710 = 10011012


What is the binary expression of the decimal value 27?

27 = 11011