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 |
Why declare Main() method as a static in java ?
Why do we override tostring method in java?
What happens if an exception is not handled in a program?
How to print a statement without using semicolan in java
What is the Layout for ToolBar?
What is the differnence between String Buffer and String builder despite having knowledge that String builder is faster than String Buffer and last one is threadsafe.please tell another important difference.
What is inner class?what is the use of inner class?where we create the object for inner class? and inner class can extend any class or inner class can implement any interface?
Explain the use of sublass in a java program?
why there are multiple catches for a try block.don't tell me that there can be multiple exception of a code segment that's why.tell me the real fact behind this.
What is the use of pattern in java?
String is an immutable object. Then how can the following code be justified. String s1 = ?ABC?; String s1 = s1+?XYZ?; s.o.p(s1); The output is ABCXYZ, which is the value of s1 ?
6 Answers Flextronics, Keane India Ltd,
What is abstract class? Explain