Computer Applications
Write the difference between a compiler and an interpreter.
Computer System
5 Likes
Answer
Differences between a compiler and an interpreter are:
Compiler | Interpreter |
---|---|
It translates the whole source program into target program at once. | It translates the source program into target program one line at a time. |
All the errors found during compilation are displayed together at once. | Errors are displayed line by line as each line is translated and executed. |
Answered By
3 Likes