A Translators is a system software which converts programming Language code into binary format.
Translators are classified into 3 types-
Compiler
Interpreter
Assembler
(1) - Compiler - It is system software which converts programming Lang code into binary format in 2 single steps except these lines are having errors.
(2) - It is system software which converts programming Lang, code into binary format step by step.
I.e. Line by line complication takes place. (When lst error is occur, it stop compilation process)
(3) - By using assembler ewe can convert assembly language instruction into binary formats.
As per the performance wise, I recommend using a compiler.
As per the development wise recommended using an interpreter.