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 |
Is age discrete or continuous?
How to split a string in java?
What is the base class of all classes?
What class is used to create Server side object?
What invokes a thread's run() method in java programming?
What is the meaning of I ++ in java?
Explain public static void main(string args[]) in java.
Where are the card layouts used?
What are the special characters?
Can static methods be inherited?
What is the difference between path and classpath variables?
Hi Friends, can you give difference between extending thread class and implementing runnable interface.