answersLogoWhite

0


Best Answer

Potato

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a double variable?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How can I declare a double precision variable in Fortran?

To declare a double precision variable in Fortran, you can use the "real(kind8)" declaration. This specifies that the variable should be of double precision, which is typically 8 bytes in size.


How many bytes is a double variable?

There are 8 bytes in a double


Define pointer to pointer in c?

Double (**) is used to denote the double pointer. As we know the pointer stores the address of variable, Double pointer stores the address of any pointer variable. Declaration : int **ptr2Ptr;


Features in law of double complementation?

In Boolean algebra, the law of double complementation states that a variable is equal to its double complement. This means that applying the complement operation twice to a variable yields the original variable. This law is useful in simplifying Boolean expressions and can help in reducing the complexity of logic circuits.


What would the variable expression be for double a number f?

2f


Why is it important to change double variable during an experiment?

becuase because


What will be the maximum size of a double variable?

8


How can I convert a float to a double in Java?

To convert a float to a double in Java, you can simply assign the float value to a double variable. Java will automatically perform the conversion for you. Here's an example: java float floatValue 10.5f; double doubleValue floatValue; In this example, the float value 10.5f is assigned to the double variable doubleValue, which will now hold the converted double value.


In PHP you can use both single quotes ( ' ' ) and double quotes ( ) for strings?

You can use single quotes $variable = 'string'; You can use double quotes $variable = "string"; You can use the Heredoc method $variable = <<<EOT Very Long String EOT; And you can use the Nowdoc method (after PHP 5.3.0) $variable = <<<'EOT' Very Long String EOT;


C plus plus most accurate and largest range number variable?

double (or, on some platforms, long double)


Factors that distort the way the independent variable affects the dependent variable are referred to as?

The factors that distort the way the independent variable affects the dependent variable are referred to as the double-blinds. The factors try to explore the relationship between the dependent and independent variables.


What is the Use of a double dollar sign in php?

A double dollar sign in php makes a variable with a name equal to the value of the original variable. It works like this:$var = "keith";$$var = "palmer";print ($keith);// The output is: palmer