interpreter is involved in conversion of source code to object code line to line whereas the compiler converts the source code to the object after the entire program is written
compiler compiles (or changes your coding into machine language) at one go and at the end give you the list of errors on each and every line but the interpreter processes or converts the coding line...
Assemblers convert Assembly code to machine code
Interpreters convert high level code to real-time machine code and store it in the memory for direct execution
Compilers convert high level code to...
A compiler translates code from a source language (e.g. C, C++, Java) to a target language, which can then be executed by a (virtual or physical) machine. An interpreter reads code in an interpreted...
complisr check entrie program at a time and gives errors and wrranings. but interpreters chech line by line. if any line having error it gives message . if u cleary error in that and goes to next...