answersLogoWhite

0


Best Answer

The set of the possible values.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is difference between an integer variable and floting point variable?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between Declaration and Assignment?

Declaration is basically defining data type and length and assignment is to assign the value. Below is the declaration -- var a integer /* this means we are declaring a variable a as integer data type */ a= 5 /* this is assignment,we are assigning 5 to variable a */


What is difference between number and integer?

an integer is a whole number


What integer is the difference between 13498 and 13416?

The difference between them is 82


Is the difference between a negative integer and a positive integer always a negative integer?

sometimes


What is the difference between instantiation and initialization in C plus plus?

Instantiation is creating the instance of the variable/object . While Initialization is to provide the variable with some value. int i; // i is an instance of an integer i=10; //initialised with the value 10


Is the difference of a positive integer and a negative integer always positive?

The difference between any numbers is always positive.


What is the code required to convert an integer variable to a string variable in Java?

There are several different methods to convert an integer variable to a string variable in Java. For example, one can use the following code to convert an integer variable to a string variable: Integer.toString(number)


What are the difference between integer and a whole number?

There are no differences.


(variable) = 34?

Integer


What is the difference between subtracting a negative integer and adding a positive integer?

In the end, there is no difference because subtracting a negative integer is the same as adding a positive integer. 1-(-1)=2 1+1=2


What is the difference between a whole number and integer or is it the same?

The same


What is the difference between data and variable?

data type refers to the kind of value that is held by a particular variable. For ex: an int variable contains integer value, a string holds a alpha numeric value etc. variable refers to the name of a value using which we can refer to this value. Ex: public int age = 28; here int is the data type and age is the variable.