Skip to main content

Posts

Showing posts from June, 2016

Variables

Variables Variables acts as a container for the user data. It is a named area that is allocated by the user and space will be allocated according to its datatype. Variable needs to be declared before using them. Value of variable can be changed any number of times during the execution of program.  For example:                  int a;   //declaring an integer type variable.                  a = 5;  //assigning value to a variable. Local Variables : Variables that are declared inside a members are called Local Variables. Local variables are necessary to initialized.Their value is varied from object to object.           *  Only Final modifier is used with local keywords.           * They can be initialized in static and instance block.           * Stored inside stack memory. ...

Introduction To Java

Introduction To Java To learn the Java Language... we need to understand WHAT is java, WHERE it is used, WHY we use java. WHAT is java?     Java is a programming language. A language used by humans to communicate with systems. It was created by Sun Microsystems, Inc. in 1991. Sun Microsystems was acquired by the Oracle Corporation in 2010. Now Java is owned by Oracle. WHERE it is used?    Java is used where we need to develop some application which can be Desktop Applications, Web Applications or Mobile based Applications. Desktop application  are stand alone applications. To built these applications in JAVA we need to install the JSE(Java Standard Edition), JDE(Java Distributed Edition). Web  applications are client-server applications. To built these app ,we need to install JEE(Java Enterprise Edition). These applications are accessed using browsers. Mobile applications are also standalone applications, To built them we need JME(Java Mobil...