what is the name of java compiler?
the name of interpreter being JVM
Answers
Answered by
6
JAVAC (The java programming language compiler) is the name of java complier
And
JIT(just in time) the name of interpreter being JVM.
And
JIT(just in time) the name of interpreter being JVM.
aadi2203:
thank you
Answered by
1
JAVA Compiler name is : JAVAC (The java programming language compiler)
JVM is an abstract machine designed to be implemented on top of existing processors .
It helps to convert the given code in JAVA to bytecode and then we can intrepret the code for a given platform by using an interpreter .
This interpreter is called JVM .
The full form of JVM is Java Virtual Machine .
The code is first written in .java .
Then converted to bytecode and then .exe by the JVM .
It is platform independent .
It hides the operating system from JAVA application .
Similar questions