answersLogoWhite

0


Best Answer

8

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the range of unsigned numbers that can be stored in an 8 bit register?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Range of signed numbers that can be stored in an 8 bit register?

Range of 8 bit signed number is -128 to 127 Reference: digital fundamentals by Floyd


What is the largest prime number that can be stored in 4 bit memory?

Assuming the number holds an unsigned number, the range of numbers for 4 bits is 0-7. 7 is a prime number.


What is the range of unsigned binery numbers?

2n, where n is the number of bits available.


What is the maximum value that can be stored in an integer in c?

if it is a signed int the the range is -32768 to 32767if its unsigned then 0 to 65535


Why does the starting number of an IP address have a range of 1-223?

It goes up to 255, as do the three following numbers. The reason is 255 is the highest value that can be stored as an unsigned 8-bit integer, and when IP was designed, the number of addresses available was thought to be large enough.


What is the maximum range of numbers that can be stored in a 12bit word?

2^12 = 4095 is the maximum range of 12bit word


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 is range of 8 bit unsigned integer?

Bits administrator


What is the difference between unsigned and int?

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


Why do you need signed and unsigned integer?

We need signed integers in order to represent both negative and positive values. However, some numbers can never be negative. For instance, the size of a file must always be greater than or equal to zero so we use unsigned integers to represent file sizes. Also, natural numbers must be greater than 0 so there's no point in using a signed value to represent a natural number. Signed integers also use one bit to denote the sign, but unsigned integers do not thus unsigned integers can effectively represent twice the range of positive values than an unsigned integer can. For instance, an 8-bit signed value can represent values in the range -128 to +127 using twos complement notation, but an 8-bit signed value can represent values in the range 0 to 255.


How many bytes are required to store an unsigned integer range?

4


What is the binary range in decimal of a byte?

Nobody knows what you are talking about, but if you mean what the biggest number is in a byte, it is 255 or 127. The former is only for unsigned, while the latter is the maximun if the byte is signed. If you mean how many numbers can be represented, it is 256 or 128. Again, the former is if it is unsigned and the latter is if it is signed.