405,884 views
35 votes
35 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 Cherry Wu
by
2.9k points

2 Answers

14 votes
14 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 Brad Davis
by
2.5k points
14 votes
14 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 Jarena
by
2.1k points