Computer Science, asked by yasharsh9309, 1 year ago

three types of language processors

Answers

Answered by hukam0685
11
Three types of language processors are
1) Compiler
2) Assembler
3) interpreter
Answered by kapil913
4

TYPES OF LANGUAGE PROCESSORS

Usually there are three types of language processors they are :-

  • Assembler :-  It is a type of language processor which translates a program written in assembly language into machinery language. The machinery language is nothing but binary language (Example :- 0100100010010).
  • Interpreter :- It is a type of language processor which translates the program line-by-line and executes it and then go to next line. This language processor when finds a error in a program then it stops in that line and doesn't move to next line until the error is resolved. Example :- LISP , BASIC etc.
  • Compiler :- It is type of language processor which translates the whole program and then executes the whole program. If this processor finds any error then it put all the error in one file and when the error is resolved then it runs the program. Example :- C, C++ etc.
Similar questions