What is the difference between interpreter and compiling ?
Answers were Sorted based on User's Feedback
Answer / satish chaurasia
interpreter : a program written in source language can be
understood and executed by the CPU line by line.As the
first line is encountered by the interpreter, it is
translated and executed. same next line executed.
Whereas
A compiler translates a complete source program into
machine code. means it converts the .java file into .class
file.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / guest
Interpreter is used to execute the program after the
completion of a compilation process.
Compiler compiles the program that is it converts the java
file into class file.
| Is This Answer Correct ? | 0 Yes | 3 No |
What is the difference between iterator and enumeration ?
What are the types of collections in java?
how can u create the object with out new operator
Who found java?
What is a layout manager?
What is a short in java?
What function extracts specified characters from a string?
What is difference between static and final?
What is a method in programming?
Explain notifyall() method of object class ?
Which collections are thread safe in java?
explain the concept of inheritance with an example?