Computer Applications
Distinguish between Compiler and Interpreter
Java Intro
121 Likes
Answer
| Compiler | Interpreter |
|---|---|
| It converts the whole source program into the object program at once. | It converts the source program into the object program, one line at a time. |
| It displays the errors for the whole program together, after the compilation. | It displays the error one line at a time and only after fixing that error the control goes to the next line. |
Answered By
84 Likes