Articles, dummyCategory

Java Variables – HowToDoInJava

As term suggest, a variable is whose value can vary during the runtime. In Java, a variable is a named reference to a memory area where value of the variable is stored. A variable declaration has following syntax: [data_type] [variable_name] = [variable_value]; data_type – refer to type of information stored in memory area. variable_name – …