Please enable JavaScript.
Coggle requires JavaScript to display documents.
types of Language processor - Coggle Diagram
types of Language processor
interpreters
An interpreter reads each statement of the source program, converts it into the machine language and then executes.
Example- Visual Basic , Python use an interpreter.
Copilers.
A compilers convert all instructions of a high-level language program (source code) into the machine language at one go and generates the corresponding machine language code called object code .
example- c or c++ is first compiled using a compiled to generates an object code.
Advantage of the compiler
The program code is already translated into machine code. Thus, it code execution time is less.
disadvantage of the compiler.
You can't change the program without going back to the source code.
Interpreters
Compilers