answersLogoWhite

0


Best Answer

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

8y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the largest decimal number that can be represented with 7 bits?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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 decimal number that can be represented using 6 binary bits?

The largest unsigned integer is 26 - 1 = 63, giving the range 0 to 63; The largest signed integer is 25 - 1 = 31, giving the range -32 to 31.