answersLogoWhite

0


Best Answer

Assuming the popular 2's complement is used, the range is from -24 to +24 - 1.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the range of signed binary number using 5 bit?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the range of numbers that can be represented using 7-bit signed binary number?

range iS given by -{2^(k-1) - 1 } to +{2^(k-1)-1} So putting k=7 range i from -63 to +63


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 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 does binary number 1111000 convert to in decimal numbers?

111100002 equals 24010 using unsigned notation. It equals -1610 using signed notation.


Signed binary multiplier?

Binary multiplier is taking numbers and using multiplication and division. This is used in math.


How do you write a c program to convert binary to decimal by using while statement?

write a c++ program to convert binary number to decimal number by using while statement


Describe the range of numbers that can be represented by a 16 bit number using two complement?

A signed 16 bit number can represent the decimal numbers -32768 to 32767.


Which binary number corrresponds to 00000111 decimal?

IF you are asking what that binary number is in decimal form... it would be 7. The question though seems to be asking waht that decimal number is in binary. You want to know what 111 is in binary? 1101111. Try using google. "111 in binary" as a search phrase gives you the answer.


What is the number that you can count up to using 10 bits?

the highest number you can count up to using 10 bits is 1029 using binary


What range of numbers may be held in a nibble?

4 bits range of number. At most, this covers the range from 0 (zero) to 15 (fifteen) when encoded as binary numbers. However, some number systems exist that encode using a less compact scheme. BCD, short for binary coded decimal, doesn't use the A...F range of the hexadecimal system. For BCD numbers, a nibble only holds values 0 (zero) to 9 (nine).


How do you convert binary number to bcd number on paper?

Example Binary 00111000 Convert to Decimal 56 Convert to BCD by using groups of four binary numbers for each digit 5 6 0101 0110


What does the decimal number 255 mean in binary?

255 as a decimal number (also known as a base 10 number) = 11111111 in binary (also known as a base 2 number). In binary, each digit is known as a bit, and 8 bits are known as 1 byte. 255 is the largest (positive) number you can make in binary using only 8 bits (1 byte).