answersLogoWhite

0


Best Answer

40000(10) = 9C40(16) = 1001110001000000(2)

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a 16 bit unsigned binary value?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the numeric range of 16-bit unsigned binary value?

0..65535 Note: check me using your calc.exe: 65535 = 2^16-1


What is the largest number that can be represented by a 16-bit unsigned binary number?

216-1 or (2^16)-1


What does a signed data type mean?

signed: its value can be less than zero unsigned: its value cannot be less than zero example: 16 bit signed: -32768 .. 32767 16 bit unsigned: 0 .. 65535


What is the difference between unsigned and int?

The value range. Example for 16-bit integers: signed: -32768..32767 unsigned: 0..65535


What is the maximum count of decimal of a 5-bit binary counter?

A 5-bit binary counter, interpreted as an unsigned integer, has a range of 0 to 31. Interpreted as a two's complement signed integer, it has a range of -16 to +15.


How many '1's are there in a 16 bit binary sequence?

In a 16 bit number there must be from zero to 16 '1'. If a bit does not have value zero then it has a value of 1. Nothing else can be represented by a bit. Example 0000 is a 4 bit number. Each bit is a zero. 1010 is also a four bit number. 0000111100001111 is a 16 bit number. 1100110011000001 is also a 16 bit number.


What is the memory space required if two unsigned 8 bit numbers are multiplied?

16 bit


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.


Where is hexadecimal is used?

Hexadecimal is used whenever we want to notate a binary value because each hex digit maps directly with each 4 bit nybble (half a byte). A 64-bit binary value can therefore be reduced to a more concise 16-digit hex value.


Is the largest 16 bit positive number?

Unsigned: 216-1. Signed: 215-1.


What is 16Mb in binary notation?

16 Mb in binary notation can be refered to as 16*1024 bits. A bit is represented with a lower case "b".


What is the largest hex value that can move into a 16-bit register?

In unsigned notation, 0xFFFF (65,535 decimal) is the largest value that will fit in a 16-bit register. In signed notation, 0x7FFF (32,767 decimal) is the largest because the most-significant bit denotes the sign.