answersLogoWhite

0


Best Answer

8

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How many bits need to represent the decimal number 200?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How many binary bits are needed to represent decimal number 21?

5


How many bits are required to represent 32 digit decimal number?

103


How many bits are needed to represent decimal 200?

8 bits if unsigned, 9 bits if signed


How many binary bits are required to represent the decimal number 643?

Count them: 643(10)=1010000011(2)


How many bits are needed to represent decimal value ranging from 0 to 12500?

how many bits are needed to represent decimal values ranging from 0 to 12,500?


how many bits are needed to represent decimal values ranging from 0 to 12,500?

1200


How many bits are needed to represent the decimal number 200?

8 (assuming unsigned numbers - i.e., you don't reserve a bit for the sign).


How many decimal numbers can be represented by 4-bits?

There are 16 decimal numbers that can be represented by 4-bits.


How many digits does 5 bit have?

5 bits are 5 binary digits. If they represent a decimal number, then that number can be anything from zero to 31, and can have either 1 or 2 digits.


How many bits does it take to represent the number 457?

When you convert this decimal number to the binary format, we have 111001001 that has 9 digits so 9bits is required to represent it in normal case. To convert decimals to binary visit http://acc6.its.brooklyn.cuny.edu/~gurwitz/core5/nav2tool.html


How many bits are required in decimal numbers in range 0 to 999 using Straight binary code and BCD code?

10 bits would be required. 10 bits long (10 digits long) can represent up to 1024.


If a decimal number has 25 digits then how many bits are required for binary representation?

If this is a homework assignment, please consider trying to answer it yourself first, otherwise the value of the reinforcement of the lesson offered by the assignment will be lost on you.The largest decimal number with 25 digits is 9,999,999,999,999,999,999,999,999.The smallest decimal number in the form 2n-1 which is greater than or equal to that is 19,342,813,113,834,066,795,298,815. That corresponds to 284-1.So, the minimum number of binary bits required to represent the decimal number 25 nines in a row is 84. This is 84 ones in a row. If you want to support negative as well as positive numbers, you will need 85.Since the largest integer in most compilers is 64 bits, this will require a special library supporting 128 bits, or an arbitrary length decimal library, if you want to manipulate such large numbers in a computer and still retain the precision of an integer.