answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is largest positive value that may be store in 20 bits?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the largest positive value that you can represent with 16 bits?

216 -1


What is the largest value that can be stored in 64 bits represented in hexadecimal?

0xffffffffffffffff As an unsigned 64-bit integer, this represents the value 18,446,744,073,709,551,615. However, as a signed 64-bit integer, this only represents the value -1. The signed range is -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 making 0x7fffffffffffffff the largest possible positive value, and 0x8000000000000000 the smallest possible negative value.


What is the largest positive number you can represent literally ie. as an immediate value within an LC-3 ADD instruction?

There are 5 bits in the immediate value for an LC-3 ADD, but the first bit is needed for the sign representation. The answer is 15.


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 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).


Largest number stored as a byte?

Since 8 bits = 1 byte, the maximum value it could have can be found when all 8 bits are "turned on" or are 1's. 1111 1111 = 128 + 64 + 32 + 16 + 8 + 4 + 2 + 1 = 255


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

The largest possible value using 8 bits in binary is actually quite simple. Binary is a numerical system that only uses 2 numbers (1 and 0) to determine value. Our system is decimal. (0-9) Now, a 'bit' is one number from the binary system. It can either be 1 or 0. So, 8 bits means using 8 digits in binary. 1 is greater than 0, so the largest value is 11111111. (8 'one's)


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

11111111; 255 or 1+2+4+8+16+32+64+128=255 Answer 255 There are 8 bits in a byte when all are set to zero (turned off) then the value is 0. When all of the bits in a byte are set to 1 (turned on) you get the largest value that a byte holds which is 255.


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 positive number that can be stored using 8 bits?

An N-bit integer holds 2N different values.For an unsigned integer, the range of values is 0..2N-1 thus.For a signed integer using 2s complement, the range is -2N-1..+2N-1-1.Therefore, the largest positive number that can be stored using 8 bits is 255.


The largest number of bits the processor can process in one operation?

The largest number of bits a CPU can process is word size. A CPU's Word Size is the largest number of bits the CPU can process in one operation.


What is the Largest 16 bit number?

1111111111111111 (216 - 1 = 65535)