What is a language translator?write the difference between compiler and interpreter[any 3]
Answers
Answer:
Explanation:
1. Language translator is a program which is used to translate instructions that are written in the source code to object code i.e. from high-level language or assembly language into machine language. There are 3 types of language translators as follows:
Compiler..
Interpreter,Assembler
2. compiler
1. Compiler scans the whole program in one go.
2. As it scans the code in one go, the errors (if any) are shown at the end together.
3. Main advantage of compilers is it’s execution time
interpreter
1. Translates program one statement at a time.
2. Considering it scans code one line at a time, errors are shown line by line.
3. Due to interpreters being slow in executing the object code, it is preferred less.
hope it helps...if it helps don't forget to mark as brainliest answer