What is java?
It was first released by Sun Microsystem in 1995 and later acquired by Oracle Corporation in 2010.
In 2006 Sun started to make Java available under the GNU General Public License (GPL).
Lets see the phases of execution of a Java program:
- Writing of the program is of course done by java programmer
- Compilation of program is done by javac compiler, javac is the primary java compiler included in java development kit (JDK). It takes java program as input and generates java bytecode as output.
- In third phase, JVM executes the bytecode generated by compiler. This is called program run phase.
Why java language and its features?
Java is popular because of the following features:
- Simple programming language
- Object Oriented Language
- Distributed
- Robust
- Architecture Neutral or Machine Independent
- Portable
- Interpreted
- High Performance
- Multithreaded
- Dynamic
0 comments:
Post a Comment