What is meant by Java interpreter?
Answers were Sorted based on User's Feedback
Answer / ranganathkini
The Java interpreter is a part of the JVM which translates
Java bytecodes into native machine codes and executes them.
| Is This Answer Correct ? | 35 Yes | 0 No |
Answer / chandrarekha
The Java Virtual Machine(JVM) consists of class
loaders,execution engine and the JIT compiler. The
execution engine has the java interpreter which does line
by line conversion of the java class file or the byte code
into machine code...
| Is This Answer Correct ? | 15 Yes | 4 No |
Answer / manikandan [ gtec,vellore ].
it converts byte code into machine understandable code and
JVM does this job.
| Is This Answer Correct ? | 10 Yes | 2 No |
Answer / boopathi
java interpreter is part of JVM ,which is used to convert from byte code to the machine understandable code,user can easily identify the byte code, but they can't identify the machinary code .so more securablr also.
| Is This Answer Correct ? | 2 Yes | 0 No |
What is meant by method?
How can constructor chaining be done by using the super keyword?
How are the elements of a gridbaglayout organized?
What is passed by reference and pass by value ?
What is use of arraylist in java?
What is an object in java?
State the difference between creating string as new () and literal.
What are the core java topics?
what is the volatile modifier for? : Java thread
Explain Method Overloading in Java.
Why vector is used in java?
how to pass the parameters to applets?