answersLogoWhite

0


Best Answer

The information supplied with the question is incomplete and a worthwhile answer cannot therefore be provided.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which unsigned numbers represent the largest decimal number?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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 places in a 32 bit word?

The maximum value represented in a 32-bit unsigned word is 232-1 = 4,294,967,295, so you can represent all numbers with 9 decimal places and some numbers with 10 decimal places in 32-bits. log(232-1) = 9.632959861 is the true answer.


How do you write the greatest decimal with the numbers 0368?

0.863 is the largest decimal you can make with these numbers:)


What is the largest hexadecimal number that can represented with 7 bits?

If it is unsigned representation (meaning high bit is not sign bit) then it is 7F which has a decimal equivalent of 127. If it is a signed number (meaning high bit is sign bit) then numbers range from decimal -64 to +63


What do the numbers on the left of a decimal represent?

The previous number!


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.


What is the 8085A microprocessor code for finding the largest number?

The processor makes no difference in C programming -- the compiler will generate the appropriate instructions for you. To find the largest number in a sequence of numbers, store the numbers in an array. Then invoke the following function, passing the array and its length: unsigned largest (double* num_array, unsigned size) { if (!num_array !size) return size; unsigned max = 0; unsigned index; for (index=1; index<size; ++index) if (num_array[index]>num_array[max]) max = index; return max; } The return value holds the index of the largest value in the array.


When you use decimal which type of data is it?

Decimal numbers are real numbers. In C and C++ we use the float, double and long double data types to represent real numbers.


Which is largest among these numbers - 0.3 or 0.34 or 0.314 0.3004?

Among the four decimal numbers given 0.34 is the largest number.


What does binary number 1111000 convert to in decimal numbers?

111100002 equals 24010 using unsigned notation. It equals -1610 using signed notation.


Is unsigned int var valid in java?

No. Java uses no unsigned numbers.


Largest positive and negative numbers for 8 bit signed numbers in decimal?

127 -128