Computer Applications
Answer
| 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. |