Computer Science, asked by veddixit30, 2 months ago

what do you mean by variable in Java? how do you declare a variable in Java?​

Answers

Answered by Anonymous
0

Explanation:

A variable is a name which is associated with a value that can be changed. For example when I write int i=10; here variable name is i which is associated with value 10, int is a data type that represents that this variable can hold integer values. We will cover the data types in the next tutorial.

Similar questions