answersLogoWhite

0

Where the a^b means a raised to the b power:
1111111 = 2^6 + 2^5 + 2^4 + 2^3 + 2^2 + 2^1 + 2^0 = 64 + 32 + 16 + 8 + 4 + 2 + 1 = 127
or
Add 1 to reduce the number of 1's to process: 1111111 + 1 = 10000000 = 2^7 = 128

Subtract 1 to get back to the original number: 10000000 - 1 = 128 - 1 = 1111111 = 127

User Avatar

Wiki User

9y ago

What else can I help you with?

Related Questions

What is the Largest decimal number that can be represented using 16 bits in BCD?

65,535


How many decimal numbers can be represented by 4-bits?

There are 16 decimal numbers that can be represented by 4-bits.


What is the largest positive signed decimal number that can be represented by 8-bits?

If the 8 bits represent a signed number, the range is usually -128 to +127. This is -27 to 27-1.


What would the largest value in 8 bits be in hexadecimal?

Largest 8 bit unsigned number is 11111111 binary which is the number 255 in decimal. In hexadecimal 255 is represented as FF In octal 255 is represented as 377. The related link below will help.


What is the smallest number that can be represented with 6 bits?

The smallest number is zero. The largest number is 63.


What is the lagest decimal number that can be represented with 7 bits?

It is 127 = 2^7 - 1


What is the largest decimal number that can be stored using 16 bits?

674


What is the decimal equivalent of the largest binary number with 5 places?

To achieve the answer to what the decimal equivalent of the largest binary number with five places (or bits) is, work this equation: The formula is 2_ -1 where n is the number of bits. That will get you where you need to be.


How you can get the largest binary number that can be expressed with 14 bits?

The largest number is 11111111111111 which is 215 - 1. In decimal, that is 32767.


What is the largest decimal value that can be represented in binary using two bytes?

11b which is 1*2 + 1*1 = 3 would be for two bits. But a byte is 8 bits, so 2 bytes is 16 bits. The largest binary number is [2^16 - 1], which is 65535 (base ten)


What is the largest decimal number that can be stored ising 8 bits or 1 byte?

255 is the largest decimal number. 1 byte (8 bits) can store 256 *values* (0-255).


What is the largest hexadecimal number that can represented with 7 bits?

If it is unsigned representation (meaning high bit is not sign bit) then it is 7F which has a decimal equivalent of 127. If it is a signed number (meaning high bit is sign bit) then numbers range from decimal -64 to +63