Java Learning Made Easy by Dheeraj Mehrotra - HTML preview
PLEASE NOTE: This is an HTML preview only and some elements such as links or page numbers may be incorrect.
Download the book in PDF, ePub, Kindle for a complete version.
Download the book in PDF, ePub, Kindle for a complete version.
Declaration of Variables in JAVA







A Declaration of a variable refers to the following:


(i). Specification of the name of the variable.


(ii). Specification of the data type of the variable.





(iii). Specification of the scope of usage of the variable.


eg.


int age;
String name;
boolean isAbsent;




attention@computerscienceexpertise.com




















