ACompiler
BInterpreter
CBoth A) and B)
DAssembler
Answer:
C. Both A) and B)
Read Explanation:
Compilers, interpreters, and assemblers are translators used to convert high-level programming languages into machine code that computers can understand:
Compilers: Translate a program's source code into machine code or object code. Compilers can optimize code to run faster or take up less memory. Compiled programs can be supplied as executable files, which are ready to run.
Interpreters: Easier to use for partially testing or debugging programs. Interpreters run until an error is reached, allowing you to test code that you haven't completely finished.
Assemblers: Another type of translator used in programming.
Language translators can be strict about their language interpretations, requiring matching types and other conditions