Microsoft Learn
learn.microsoft.com › en-us › office › vba › language › reference › user-interface-help › double-data-type
Double data type | Microsoft Learn
Double (double-precision floating-point) variables are stored as IEEE 64-bit (8-byte) floating-point numbers ranging in value from: -1.79769313486231E308 to -4.94065645841247E-324 for negative values · 4.94065645841247E-324 to 1.79769313486232E308 ...
DataCamp
datacamp.com › doc › java › double
double Keyword in Java: Usage & Examples
This example shows the use of a double array. The array temperatures is initialized with four double values. A for-each loop iterates through the array and prints each temperature. Precision: Use double when you need more precision than float can provide. The double data type is more precise ...
Videos
Microsoft Learn
learn.microsoft.com › en-us › dotnet › visual-basic › language-reference › data-types › double-data-type
Double Data Type - Visual Basic | Microsoft Learn
Appending the identifier type character # to any identifier forces it to Double. In the following example, the variable num is typed as a Double:
Apache
impala.apache.org › docs › build › html › topics › impala_double.html
DOUBLE Data Type
SELECT CAST('nan' AS DOUBLE)=CAST('nan' AS DOUBLE); ... Partitioning: Because fractional values of this type are not always represented precisely, when this type is used for a partition key column, the underlying HDFS directories might not be named exactly as you expect.
Liam ERD
liambx.com › glossary › double data type
DOUBLE Data Type - Liam ERD
December 4, 2025 - In scientific databases, it's commonly used for storing experimental measurements and calculation results. Financial systems might use Double for certain types of calculations, though decimal types are often preferred for monetary values due to exact decimal representation requirements. CREATE TABLE measurements ( id INT PRIMARY KEY, value DOUBLE, timestamp DATETIME ); This example demonstrates a typical use case where Double is appropriate for storing scientific measurements that require high precision but can tolerate minor rounding differences.
Medium
medium.com › @Dev_Frank › datatypes-in-c-double-long-double-void-bool-0e55eaec1380
DATATYPES IN C (double, long double, void, bool) | by Dev Frank | Medium
February 5, 2024 - #include <float.h> printf("Minimum value of long double: %Le\n", LDBL_MIN); printf("Maximum value of long double: %Le\n", LDBL_MAX); ... void data type is a special data type that indicates the absence of a specific type. Here’s a detailed explanation of the void data type: void is used to declare functions that do not return any value. For example:
SAP Help Portal
help.sap.com › docs › SAP_SQL_Anywhere › 93079d4ba8e44920ae63ffb4def91f5b › 81f6ddbf6ce21014a29ac4c7f92e4b25.html
DOUBLE Data Type
We cannot provide a description for this page right now
Simplilearn
simplilearn.com › home › resources › software development › double data type in c++ | a comprehensive guide
Double Data Type in C++ | A Comprehensive Guide
September 7, 2025 - The C++ double data type falls under the primitive data types category. Learn how does double data type work in C++ and the rules and regulations for using it.
Address 5851 Legacy Circle, 6th Floor, Plano, TX 75024 United States
Wikipedia
en.wikipedia.org › wiki › Double-precision_floating-point_format
Double-precision floating-point format - Wikipedia
January 9, 2026 - Before the widespread adoption of IEEE 754-1985, the representation and properties of floating-point data types depended on the computer manufacturer and computer model, and upon decisions made by programming-language implementers. E.g., GW-BASIC's double-precision data type was the 64-bit MBF floating-point format.
Reddit
reddit.com › r/learnpython › [deleted by user]
What is a double? (Data type) : r/learnpython
March 30, 2022 - from google: Python does not have an inbuilt double data type, but it has a float type that designates a floating-point number. You can count double in Python as float values which are specified with a decimal point. All platforms represent Python float values as 64-bit “double-precision” values, according to the IEEE 754 standard.
MQL4
docs.mql4.com › basis › types › double
Real Types (double, float) - Data Types - Language Basics - MQL4 Reference
Real Types (double, float) - Data Types - Language Basics - MQL4 Reference
IBM
ibm.com › docs › en › db2 › 11.5.x
double data type (Db2 XQuery)
The xs:double data type is patterned after the IEEE double-precision 64-bit floating point type. Derived from data type xdt:anyAtomicType.
Oracle
docs.oracle.com › javadb › 10.10.1.2 › ref › rrefsqljdoubleprecision.html
DOUBLE PRECISION data type
Derby throws an exception if an operation calculates or tries to store a value of NaN, positive infinity, or negative infinity, as defined by the IEEE 754 Standard for Binary Floating-Point Arithmetic and as represented with named constants in the Java programming language (for example, Double.NaN). Numeric floating-point constants are limited to a length of 30 characters. -- this example will fail because the constant is too long: values 01234567890123456789012345678901e0; ... When mixed with other data types in expressions, the resulting data type follows the rules shown in Numeric type promotion in expressions.
Sybase
infocenter.sybase.com › help › topic › com.sybase.help.sqlanywhere.12.0.0 › dbreference › double.html
DOUBLE data type
SQL/2008 The DOUBLE PRECISION type is a core feature of the SQL/2008 standard.
Hackr
hackr.io › home › articles › programming
Float vs Double Data Types: What's The Difference [Updated]
January 30, 2025 - Mixed Usage: The choice in data science and machine learning tends to vary. Training models might use double for precision, but once trained, the models might use float to improve performance during inference, especially on specialized hardware like GPUs. Example: Training a neural network on a powerful server using double, then deploying it on a mobile device using float.
Javatpoint
javatpoint.com › what-is-double-in-c
What is double in C - javatpoint
What is double in C with Tutorial, C language with programming examples for beginners and professionals covering concepts, c pointers, c structures, c union, c strings etc.