Which of the following are language processor?

Which of the following are language processor? Correct Answer Assembler, Compiler and Interpreter

Concept:

Language processor is a software that bridges the execution gap. Input is the source program and output is the target code. Types of language processor are : assembler, compiler and interpreter.

Explanation:

Assembler:

It converts assembly language program to machine language which computer understands. They produce executable code.

Compiler:

It converts a high language program to machine language program. Translation process should also tell about the presence of errors in the source program.

Interpreter:

It bridges the execution gap without generating the machine language code. In this, there is no target code. It executed the code line by line. 

Related Questions