Posts

Is there any difference between Java EE and Java SE

Differences between Java EE and Java SE Java Technology is both programming language and a platform. The Java programming language is a high - level object oriented language that has a particular syntax and style. A java platform is an Environment in which java programming language applications run. The Java Programming Language Platform Four Platforms of Java Programming Language Java Platform, Standard Edition Java Platform, Enterprise Edition Java Platform, Micro Edition JavaFX All java platforms consist of a java virtual machine (JVM) and an application programming interface (API). The java virtual machine is a program, for a particular program, that is used to run java applications. An API is like  a library that is used to create other software components or applications. Each Java platform provides a virtual machine and an API, and this allows applications written for that platform to run on any compatible system with all the advantages of the java programming...

Types of Variables in Java

Types of Variable in Java Variable is a type of Container , it has different types of values. actually it is small size memory in Java or any other language Three Types of Variables Class Variable Instance Variable Local Variable Class Variable - A variable declare with static variable is class variable ( Static is a Java keyword) Instance Variable - A variable which is declared inside the class but outside the method, called instance variable Local Variable - A variable which is declared inside method called local variable. For more Java Training Tutorials please Check out www.carvinc.com