What is the life cycle of JVM ??
As we know the following,
Java is both compiler and Interpreter
Java is a just-in time compiler.
javac classname.java
// using this command am compiling my code. It means JVM converts the normal Unicode(.java file) into bytecode(.class file) right??
Now when will the interpreter takes its turn ?? Before making the .class file or after making .class ??
Regards
Dhinesh