How is a high-level programming language interpreted?
OA binary interpreter is used to translate binary number to code.
O All lines of code are translated together and then executed at once.
O One line of code is translated and then executed before moving to the next line.
O Six lines of code are translated and then executed before moving to the next set of six.

Respuesta :

Answer:

Once a program is compiled, the chore of language translation is over with and therefore executing the program only requires execution time, not additional translation time. To execute an interpreted program, every instruction is translated first and then executed; this must be done every time the program is run.

Explanation: