Tag: compiler in java
-
.Java file and .class file
Java is a platform-independent programming language. It involves a two-step execution process instead of the usual one-step compilation like the C language. The first step execution takes place using a compiler, OS independent. The second step execution takes place with the help of a virtual machine, also called JVM or Java Virtual Machine. During the…