answersLogoWhite

0


Best Answer

is it possible to apply CSD to bough wooley multiplier

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Canonical signed digit number representation of a binary number?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is the lowest value 6 bit number you can have in binary?

000000 is the lowest number in a 6 bit unsigned binary number (meaning the high order bit is not the sign bit). If it is a signed number then the lowest number would be represented by 100000 which is equivalent to -32 in decimal. Highest unsigned number in 6 bits is decimal 63. Highest signed number in 6 bits is decimal 31.


What is the larest binary number a nibble can hold?

A nibble is 4 bits, so the largest unsigned number is 1111, or 15. Also, the largest signed number is 0111, or 7.


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


The binary number 11 would have a decimel equivelent of?

It depends. If you are using unsigned numbers, then the following assumption is made: 0b11 = 0b00000011, in which case the answer is; 2^1 + 2^0 = 2 + 1 = 3 If you are using signed numbers, than a binary number in the form 0b11 would be interpreted as negative because the leading bit is equal to 1. For signed numbers, the '1' in the leading bit is extended, thus: 0b11 = 0b11111111 In order to interpret this number, negate the number by flipping the bits and adding 1: 0b11111111 0b00000000 (bits flipped) 0b00000001 (added one) The positive representation of 0b11111111 is equal to 0b00000001, which is equal to 1, thus 0b11 = 0b11111111 = -1

Related questions

What is the maximum number represents by 10 bit signed binary digits?

+511


Determine the decimal value of the signed binary number 11101000 expressed in 1s complement?

232


What is the maximum number represents by 16 bit signed binary digits?

Plus or minus 65,535


What is the lowest value 6 bit number you can have in binary?

000000 is the lowest number in a 6 bit unsigned binary number (meaning the high order bit is not the sign bit). If it is a signed number then the lowest number would be represented by 100000 which is equivalent to -32 in decimal. Highest unsigned number in 6 bits is decimal 63. Highest signed number in 6 bits is decimal 31.


Twos complement of a given 3 or more bit binary number of non-zero magnitude is the same the original number if all bits except the?

ANSWER: MSB IS 1 In the 2's complement representation, the 2's complement of a binary number is obtained by first finding the one's complement (flipping all the bits), and then adding 1 to the result. This representation is commonly used to represent signed integers in binary form. Now, if all bits except the sign bit are the same, taking the 2's complement of the binary number will result in the negative of the original number. The sign bit (the leftmost bit) is flipped, changing the sign of the entire number. For example, let's take the 4-bit binary number 1101 The 2's complement would be obtained as follows: Find the one's complement: 0010 Add 1 to the one's complement: 0011


What is the output of the following signed binary addition 10101011 10010011?

When decoded, that binary says: «“


Where do you use sign binary number?

Whenever a computer program uses integers - for example, in a game, to store a player's score, but also for many other situations - this will internally be stored as a binary number. This number may be signed or unsigned. Some programming languages, such as Java, only use signed numbers. In other cases, the programmer may decide to use either signed or unsigned numbers, depending on his needs.


What is the larest binary number a nibble can hold?

A nibble is 4 bits, so the largest unsigned number is 1111, or 15. Also, the largest signed number is 0111, or 7.


What is 10001110101 in binary code mean?

Actually, that answer is incorrect. Binary is used to hold information. However, without a context, the information can only be translated as a number. There are two types of binary integers (ironic, right?). The first type is called unsigned. The second type is called signed. If you have an unsigned binary integer, the number can only be positive. If you have a signed binary integer, the first number indicates the sign of the number (and ONLY the sign. A position cannot mean both a value AND positive or negative). A '0' in front means positive, and a '1' in front means negative. So, if the number in question was an unsigned integer, it would have a value of 1024 + 64 + 32 + 16 + 4 + 1 = 1141. If the number in question was a signed integer, it would have a value of (-1)*(64 + 32 + 16 + 4 + 1) = -117.


Signed binary multiplier?

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


What number representation has the sign as the high order bit and the remaining bits represent the absolute value of the numeric value?

signed magnitude


Can some one find any clues after converting 514-34-24-18 to binary. These numbers were the first clue in the challenge and his hint was convert to binary?

If these are truly subtractions, then 514-34-24-18 = 438 which in binary is 111000000 and can be considered as a 9 bit signed binary number and translates to EBCDIC "-{" and if considered as an unsigned binary number it translates to EBCDIC "1{", may be this will give you a clue with respect to the context.