141k views
3 votes
A program that can be used to convert a single line of C# into machine language without having to compile the entire program is called a C# ___ .

A. interpreter
B. compiler
C. executor
D. translator

User Basir Alam
by
7.7k points

1 Answer

3 votes

Final answer:

A program that can be used to convert a single line of C# into machine language without having to compile the entire program is called a C# interpreter. Interpreters translate the code line by line and execute it immediately.

Step-by-step explanation:

A program that can be used to convert a single line of C# into machine language without having to compile the entire program is called a C# interpreter. Interpreters translate the code line by line and execute it immediately. In contrast, compilers translate the entire program into machine language all at once, and the resulting executable file can be run independently.

User Mateva
by
7.6k points