Difference between revisions of "Double"

esse quam videri
Jump to: navigation, search
Line 3: Line 3:
  
 
=Relevance=
 
=Relevance=
Doubles are commonly used for large numbers in programming. They can also hold a useful amount of decimal precision
+
Doubles are commonly used for large numbers in programming. Being floating-point numbers, doubles can hold decimal precision.
  
 
=Explanation=
 
=Explanation=
 
+
Doubles can be used for arithmetic expressions such as addition, multiplication, division in programming.
  
  

Revision as of 18:57, 16 July 2019

Definition

A double is a data type. It is a floating-point number that has 64 bits of space.

Relevance

Doubles are commonly used for large numbers in programming. Being floating-point numbers, doubles can hold decimal precision.

Explanation

Doubles can be used for arithmetic expressions such as addition, multiplication, division in programming.


Resources

See also

Notes

External Links