Computer Science
Distinguish between Compiler and Interpreter
Java Intro
4 Likes
Answer
Compiler | Interpreter |
---|---|
It converts the whole source program into object program at once. | It converts the source program into object program one line at a time. |
It displays the errors for the whole program together after compilation. | It displays the errors of one line at a time and after debugging the control goes to the next line. |
Answered By
2 Likes