158k views
4 votes
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.

User Xenteros
by
4.1k points

2 Answers

5 votes

Answer:

The correct answer is One line of code is translated and then executed before moving to the next line

Step-by-step explanation:

i took the test and its right

User Felix Cen
by
4.2k points
6 votes

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.

Step-by-step explanation:

User Dutoitns
by
4.0k points