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 |
Why do we need strings in java?
Can we write method inside a method in java?
What is the concept of multithreading?
Can I use % with real numbers?
Where is const variable stored?
What classes of exceptions, thrown by a throw statement?
What do you mean by inner class in java?
How to make a read-only class in java?
What is oop in java?
What is the difference between Java and C++?
0 Answers Integreon, TCS, ZS Associates,
Can a abstract class be defined without any abstract methods?
What are the disadvantages of object oriented programming?