answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is binary of -37 using sign and magnitude representation?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

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


What is -33 sign and magnitude?

Sign . . . negative Magnitude . . . 33


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 are the rules for adding a positive and negative integer?

The magnitude of the sum is the difference between the magnitudes of the two numbers. The sign of the sum is the sign of the number with the larger magnitude. (The "magnitude" of a number is just the size of the number without any sign.)


What is the absolute value of -7.61?

Absolute value of any number is just the magnitude without any sign attached to it. For positive numbers the magnitude is the value of the number. For negative numbers just remove the negative sign and you will have the magnitude. In this case the magnitude is 7.61

Related questions

What are the advantages and disadvantages of using sign magnitude number representation?

boob


What is the main limitation of sign magnitude representation?

One of the bit patterns is wasted. Addition doesn't work the way we want it to. Remember we wanted to have negative binary numbers so we could use our binary addition algorithm to simulate binary subtraction. How does signed magnitude fare with addition? To test it, let's try subtracting 2 from 5 by adding 5 and -2. A positive 5 would be represented with the bit pattern '0101B' and -2 with '1010B'. Let's add these two numbers and see what the result is: 0101 0010 ----- 0111 Now we interpret the result as a signed magnitude number. The sign is '0' (non-negative) and the magnitude is '7'. So the answer is a postive 7. But, wait a minute, 5-2=3! This obviously didn't work. Conclusion: signed magnitude doesn't work with regular binary addition algorithms.


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


What does quantization involve?

assigning discrete integer values to PAM sample inputs Encoding the sign and magnitude of a quantization interval as binary digits


What is -33 sign and magnitude?

Sign . . . negative Magnitude . . . 33


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 magnitude of a real number without regard to it sign?

The magnitude of a real number is its value without regard to its sign.


What are the rules for adding a positive and negative integer?

The magnitude of the sum is the difference between the magnitudes of the two numbers. The sign of the sum is the sign of the number with the larger magnitude. (The "magnitude" of a number is just the size of the number without any sign.)


If the sign of ΔH is and the sign of ΔS is then the magnitude of TΔS must be than the magnitude of ΔH for the reaction to be spontaneous?

neg, neg, less APEX :)


What is the absolute value of -7.61?

Absolute value of any number is just the magnitude without any sign attached to it. For positive numbers the magnitude is the value of the number. For negative numbers just remove the negative sign and you will have the magnitude. In this case the magnitude is 7.61


What is the 8-bit sign-and-magnitude representation of the decimal number -2?

10


How can you represent a negative integer in a computer system?

There are many different ways this can be done using binary form:signed magnitude, one bit is the sign (i.e. 0=+, 1=-) and the other bits are the magnitude of the number (this is analogous to how we write negative integers on paper)ones complement, invert every bit of the magnitude of a number to get its negative formtwos complement, invert every bit of the magnitude of a number then add one to get its negative form (most computers now use this form as the arithmetic circuits to do calculations in this form are simpler and thus less expensive than for the other two.There are also corresponding ways this can be done using decimal forms (e.g. BCD, 2 of 5, excess-3)signed magnitude, one bit or digit is the sign (i.e. 0=+, 9=-) and the other digits are the magnitude of the number (this is analogous to how we write negative integers on paper)nines complement, subtract every digit of the magnitude of the number from 9 to get its negative formtens complement, subtract every digit of the magnitude of the number from 9 then add one to get its negative form