103k views
2 votes
How is a high-level programming language compiled? (5 points)

O a
A binary interpreter is used to translate each line of code.

All lines of code are translated together and then executed at once.
ос
One line of code is translated and then executed before moving to the next line.
d
Six lines of code are translated and then executed before moving to the next set of six.

User Maetl
by
5.3k points

2 Answers

2 votes

Answer:

One line of code is translated and then executed before moving to the next line.

User Tim Kennedy
by
5.1k points
3 votes

Answer:

A high-level language is a programming language that uses English and mathematical symbols in its instructions. To execute a program in a high-level language, it can be compiled or interpreted. A compiler translates the entire program written in a high-level language to machine language prior to execution. After the compiler translates the code into machine language, it is typically executed line-by-line.

Step-by-step explanation:

User Montreal
by
5.8k points