Tag: interpreter
-
Interpreter
The interpreter is a program that carries out source code translation line by line, it translates High-level code into machine code line by line, the interpreter is a line-by-line translator. The interpreter is procedural and sequential as it carries out the translation line by line and will highlight the error on per line basis. Interpreter code execution time is higher, due…