Articles tagged with: java code
Software Help »
Java is a high level object oriented language. When we compile java code it first gets converted into highly efficient byte code by the java compiler. The generated byte code is then interpreted by a peace of software called java virtual machine.What is java virtual machine?Java virtual machine is the software which interprets compiled java byte code and runs the java program. Java virtual machine is also known as JVM. As Java code is first compiled into byte code and then the java virtual machine interprets and runs …
