answersLogoWhite

0

There isn't one.

User Avatar

Wiki User

8y ago

What else can I help you with?

Related Questions

Which is a biggest rational number?

Since there is no biggest integer, there can be no biggest rational number - since any integer is a rational number with the denominator = 1.


The biggest integer if you have 3 5 7?

753


What is the biggest integers between -9 and -3?

The biggest integer "between" -9 and -3 is -4.


What is the biggest negative number?

-1 is the largest negative integer.


What is the biggest signed integer that can be coded in X bits?

2x-1


What is the biggest integer that can be coded binary in X bits?

2x -1


What is the short integer data type in MS Access?

NUMBER (FieldSize= INTEGER)the opposite beingNUMBER (FieldSize = LONG INTEGER)A short integer is basically a smaller limit than a long integer. When defining a short integer the database will supply a slot in memory that is big enough to fit the biggest short int possible.


What is the mixed number for 6.5?

A mixed number consists of an integer followed by a proper fraction. 6 is the biggest integer, .5 remains. .5 6 1/2


What does integer range mean?

The problem must have given you a list of several whole numbers. The integer range is the difference in size (distance) between the biggest one and the smallest one.


What is the biggest positive integer?

There is no such number. According to Peano's axiom, each positive integer has a successor, which is larger (one more) than it. So the set of integers goes on for ever.


What is the biggest negative integer?

It is -1. All larger integers are non-negative.


How can I find the biggest integer my computer can handle using PHP?

You may use the following code to see how far you can push your computer via storing integers; the biggest integer allowed in PHP actually depends on the system PHP is running on, and how big of an integer it allows in its memory. It's advised that, if you really want to do this, that you turn off PHP output limiting, so then you don't get an exhaustion error. <?php for ($i = 0; TRUE; $i++) { echo $i; } ?>