answersLogoWhite

0


Best Answer

long a=22342332;// declaring long values

memory size is 8 bytes

range is -9223372036854775808 to +9223372036854775807

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

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

What is native variable in java?

native is a key word used in java method. there is no variable as native in java


How you make shared and synchronized variable in java thread?

A Variable that is shared as well as synchronized cannot be created in Java. These two terms are mutually exclusive and a variable that is synchronized in java cannot be shared and vice versa


What is the syntax of global variable in java?

There's no global variables in Java.


What is a variable type in Java?

int


Can you define variables in interface in java?

yes we can define a variable in an interface in java.


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)


How do you equate a php variable to a javascript variable?

Ideal thing would be to retrieve the value from PHP using AJAX and then assigning it to a java script variable. Thereafter compare it to the java script variable that is already present.


Can a java program has two different variable?

Yes. You can have as many variables as you want in Java


What is instance variable in java?

That refers to a variable attached to an object - also known as a field.


What is the meaning of a method in Java programming?

a method is a variable


How do you increase a variable by 5 in Java?

variable_name=variable_name+5;


Variable lnitialization in java language?

I suppose you want to ask about variable initialization.Java initialize its variables in its constructor.