Submitted by heartin on Wed, 09/25/2013 - 20:09
Java is a high level programming language that follows the object oriented principles. Java is syntactically and structurally modeled after C/C++. [node:read-more:link]
Submitted by heartin on Wed, 09/25/2013 - 19:59
Just-In-Time compilation
Java is not purely a traditional compiled or interpreted language, but tries to come in between them.
In Java, source code is saved in files with .java extensions. This source code is then compiled into a intermediate platform independent byte code, and this form has a .class extension. This .class file is then executed by Java’s JVM. [node:read-more:link]