03 Java - Variables
What is Variable?
Variable is a container which holds a Value
Datatype VariableName = value;
Example: int var = 32
Java is Static typed language - If we define the data type of a variable then it is static typed. Data type tells us what kind of data...
chetan77.hashnode.dev9 min read