Welcome to Westonci.ca, where your questions are met with accurate answers from a community of experts and enthusiasts. Get quick and reliable solutions to your questions from a community of experienced experts on our platform. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts.

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.


Sagot :

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: