Posts

Showing posts with the label JVM architecture

Java Virtual Machine (JVM): JVM in Java Programming

JVM : Acronym of JVM(Java Virtual machine) . JVM is the main part of java .To Know more about JVM in java programming , read this post and see related articles. Step by step java programming tutorial. Java Virtual Machine ( JVM ), the powerful tool of java has made java unbeatable in the programming language's industry.  JVM ,In short Java Virtual Machine is also known as JVM . Unlike other language java has different way to execute the program. Every language needs a compiler to compile the source code. Java also has compiler to compile the source code but instead of compiler it also has an interpreter to interpret the compiled code. JVM (Java Virtual Machine) : What is JVM- Concept behind this approach is that unlike other language java is a platform independent language i.e. program written on java can be executed on any platform. Now question arises how it is possible. Code written on java first compiled by java compiler and converted in to a...