answersLogoWhite

0


Best Answer

From -524287 to 524288

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the range of signed integer that may be stored in 20 bits?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

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.


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 a two byte integer can represent?

There are 8 bits in a byte, so a two byte integer would be 16 bits. The largest 16 bit integer possible would be 11111111111111112, which is 65535 in base 10.


How many bit in integer?

The number of bits in an integer is the number of times you can divide the integer by 2, truncating each result, before you reach zero.


Bits in a integer?

The number of bits required to represent an integer number depends on the size of the integer, there is no absolute answer. Generally speaking, a binary number made up of some number of bits can be considered to directly represent an integer number according to the rules of binary arithmetic. If you specify the question a little differently you can come up with a question that does have an absolute answer. For example, if you ask what range of integers can be represented by a binary number with N bits, the answer is exactly 0 to 2^N (ignoring alternate ways to characterize binary numbers such as signed two's complement). More specifically, an 8 bit binary number can represent the integers from 0 to 255. There is also another way to restate your original question. That would be to assume that you are asking how many bits (at a minimum) does it take to represent a particular integer. In that case, again assuming unsigned binary arithmetic, the answer would be found by determining the next higher power of two than the number in question and finding log base 2 of that number. For example, the minimum number of bits required to represent the integer 60 would be 6, where the next higher power of two than 60 is 64, and the log base 2 (simply the power to which 2 must be raised to arrive at the number) is 6. In theory, an infinite number of bits could represent an infinity of integers, but that is probably not really what you are asking.

Related questions

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.


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.


How many different values can 128 bits represent?

A 128-bit register can store 2 128th (over 3.40 × 10 38th) different values. The range of integer values that can be stored in 128 bits depends on the integer representation used.


What is the biggest signed integer that can be coded in X bits?

2x-1


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.


What is the largest integer that can be stored in 16 bits?

65,535 in decimal = 1111111111111111 in binary.


What is range of 8 bit unsigned integer?

Bits administrator


How many bits do you need to encode any signed integer between -1000 and 1000?

11 bits (which actually allows -1024 to 1023)


What is the highest decimal number that can be represent by 8 binary bits?

The highest unsigned integer is 255; The highest signed integer is 127.


What is short integer?

In computer programming, a variable can be (among other things) an integer or a long integer. An integer can be any whole number in the range of -32,768 to 32,767 A long integer can be any whole number in the range of -2,147,483,648 tp 2,147,483,647 I have never heard of an "integer" variable being called a "short integer" but it makes a kind of sense. Note: The size of integer types is platform-dependent, but usually: short: 16 bits int: 32 bits (16 in archaic systems: MSDOS OS Windows16) long: 32 bits (64 in unix64) long long: 64 bits


What numbers can be stored using 32-bit binary?

A 32 binary number is a number stored by a computer in 32 bits. it can represent: 1) An unsigned number in the range 0 to 4,294,967,295 2) A signed number in the range -2,147,483,648 to 2,147,483,647 3) A single precision IEEE floating point number with 1 sign bit, 8 exponent bits and 23 mantissa bits give an accuracy of about 7.2 decimal digits and a range of ± 10^-38 to 10^38


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.