answersLogoWhite

0


Best Answer

It is (2 ^ 64) - 1.

Or UNSIGNED BIGINT Maximum value (databases)

2^64-1=18,446,744,073,709,551,615

it is the answer to the 'chessboard problem' using wheat or rice, dependent on what culture you believe the Chess board originated from, It also shows a quick view of exponential growth.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is this number 18446744073709551615?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the minimum amount of moves for 64 disks on tower of hanoi?

2^64-1 = 18446744073709551615


How can i name with words 9223372036854775808 and 18446744073709551615?

"um...i have no clue o_o" i have no clue ho to write my own answer lol so I'm improving that guy's^ eighteen quintillion, four hundred forty six quadrillion, seven hundred forty four trillion, seventy three billion, seven hundred nine million, five hundred fifty thousand, six hundred fifteen.


What are the difference between signed and unsigned data types?

A signed integer represents both positive and negative values, while an unsigned integer represents only positive values. Range depends on the number of bits the compiler assigns for the representation. bits max-negative max-positive max-unsigned 8 -128 +128 255 16 -32768 +32767 65535 32 -2147483648 +2147483647 4294967295 64 -9223372036854775808 +9223372036854775807 18446744073709551615


How do you compute the binary equivalent of a number using a recursive function using C or C plus plus?

Recursion is not the best way of dealing with this. An iterative function would be more efficient. However, the following recursive method will get the job done, if somewhat slowly and painfully (the equivalent iterative method is also shown, with performance timings for comparison): #include <Windows.h> #include <iostream> typedef unsigned long long UINT64; char * Dec2BinRecur( UINT64 Dec, char *Bin, size_t Length ) { if( Length ) { Bin[--Length] = Dec & 1 ? '1' : '0'; Dec2BinRecur( Dec >> 1, Bin, Length ); } return( Bin ); } char * Dec2BinIter( UINT64 Dec, char *Bin, size_t Length ) { while( Length ) { Bin[--Length] = Dec & 1 ? '1' : '0'; Dec >>= 1; } return( Bin ); } int main() { char strFormat[] = "Dec2Bin %I64u %s: %.2f microseconds Answer: %s\n"; LARGE_INTEGER Freq, Start, Finish; QueryPerformanceFrequency( &Freq ); double Recur, Iter; char Bin[65]; memset( Bin, 0, 65 ); memset( Bin, '0', 64 ); UINT64 Dec = 18446744073709551615; QueryPerformanceCounter( &Start ); Dec2BinRecur( Dec, Bin, 64 ); QueryPerformanceCounter( &Finish ); Recur = ( double ) ( Finish.QuadPart - Start.QuadPart ) / Freq.QuadPart; printf( strFormat, Dec, "Recursive", Recur * 1000000, Bin ); QueryPerformanceCounter( &Start ); Dec2BinIter( Dec, Bin, 64 ); QueryPerformanceCounter( &Finish ); Iter = ( double ) ( Finish.QuadPart - Start.QuadPart ) / Freq.QuadPart; printf( strFormat, Dec, "Iterative", Iter * 1000000, Bin ); return( 0 ); } Output: Dec2Bin 18446744073709551615 Recursive: 9.84 microseconds Answer: 1111111111111111111111111111111111111111111111111111111111111111 Dec2Bin 18446744073709551615 Iterative: 1.72 microseconds Answer: 1111111111111111111111111111111111111111111111111111111111111111


If you put one quarter on a single square of a chess board and double it for each square how much money would you get on the last square?

In the last square you will have 2^63 quarters, or 9223372036854775808 quarters ( 2305 843 009 213 693 952 dollars). If you want to add all the quarters of the board, to see how much money you end up with, then you will have: (2^64) - 1 quarters or: 18446744073709551615 quarters. Translated into dollars: 4611 686 018 427 387 903 dollars and three more quarters. I know how many coins there would be 84,432,400,722,241,872 (84 quadrillion 432 trillion 400 billion 722 million 241 thousand 8 hundred 72


What are the rules fr multiplication and divisions of integers?

(positive number) x (positive number) = positive number (positive number)/(positive number) = positive number (positive number) x ( negative number) = negative number (positive number)/( negative number) = negative number (negative number) x (negative number) = positive number (negative number)/(negative number) = positive number


What is the formula for the atomic number?

atomic number = number of proton in an element number of proton = number of electron mass number = number of proton + number of neutron therefore... atomic number = mass number - number of neutrons


What does a negative number multiplied by a negative number equal to?

A positive number. Positive Number x Positive Number = Positive Number Positive Number x Negative Number = Negative Number Negative Number x Negative Number = Positive Number


What is 49.9 million?

It is a number. A counting number, an integer, a rational number, a real number, etc.It is a number. A counting number, an integer, a rational number, a real number, etc.It is a number. A counting number, an integer, a rational number, a real number, etc.It is a number. A counting number, an integer, a rational number, a real number, etc.


Can a real number that is not a rational number is a?

A real number which is not a rational number is an irrational number.


What number is equivalent to 30 120 minutes?

There is no number that is equivalent since a number is just that - a number. It is NOT a measure of time.There is no number that is equivalent since a number is just that - a number. It is NOT a measure of time.There is no number that is equivalent since a number is just that - a number. It is NOT a measure of time.There is no number that is equivalent since a number is just that - a number. It is NOT a measure of time.


In order to calculate the number of neutrons you must subtract the from the?

Number of neutrons = Mass number - atomic number