In which language JVM (Java Virtual Machine) is implemented
Answer Posted / sandeep sharma
Basically JVM is an interpreter..
it interprets the byte code
But it can also acts as an compiler
VM has both JIT compiler and interpreter to speed up the
execution process
Internally it maintains HOTSPOT algorithm to execute code
if loops are there it takes process by compiler otherwise it
takes interpreter
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
How to sort an array from smallest to largest java?
What is the difference between a checked and an unchecked exception?
What is the difference between checked exception and unchecked exception?
What is ide with example?
If a class is declared without any access modifiers, where may the class be accessed in java programming?
Can we have more than one package statement in source file ?
Differentiate between nested and inner class in java.
What is a instance variable in java?
What do you mean by static variable?
What is meant by memory leak?
What is polymorphism java example?
What is anonymous inner class?
Is it compulsory for a try block to be followed by a catch block in java for exception handling?
How do you define a method?
What is the difference between the Reader/Writer class hierarchy and the InputStream/OutputStream class hierarchy?