which are characteristics of interpreters? select all that apply. translate high - level programming…

which are characteristics of interpreters? select all that apply. translate high - level programming language into binary computer machine language offer a program run - time that is faster than when a compiler is used for the translation make it possible to change the source program while the program is running offer a program run - time that is slower than when a compiler is used for the translation done
Answer
Brief Explanations:
Interpreters translate high - level programming languages into machine - level instructions one at a time during program execution. They allow source code changes during runtime and generally have slower run - times compared to compilers. Compilers translate the entire high - level program into binary code before execution, resulting in faster run - times.
Answer:
- translate high - level programming language into binary computer machine language
- make it possible to change the source program while the program is running
- offer a program run - time that is slower than when a compiler is used for the translation