Answer :
Answer:
Java variable is the name of a group of data value stored in memory that can change its value but cannot change its type during the program's execution
Explanation:
Generally, a variable is a temporary location in the memory where data are stored in a computer program. Values in the variable can always be change during the course of program execution.
The equal sign ( = ) is use to assign and identify a variable. The value to be stored in the variable is always at the right of the equal sign, while the variable name is always at the left of the equal sign.