The correct response is:
A compiled language is translated into binary all at once; an interpreted language is translated line by line.
In this context, a compiled language is processed by a compiler, which translates the entire source code into machine code or binary before execution. On the other hand, an interpreted language is executed line by line by an interpreter, which translates each line of code at runtime.