Types of Computer Language
Types of Computer Language
Interpreter
Interpreter is a translator which is used to convert programs in high-level
language to low-level language. Interpreter translates line by line and
reports the error once it encountered during the translation process.
It directly executes the operations specified in the source program when
the input is given by the user.
It gives better error diagnostics than a compiler.
4 Debugging is hard as the error messages It stops translation when the first
are generated after scanning the entire error is met. Hence, debugging is
program only. easy.