What is a difference between a compiler and an interpreter? (1 point) Responses An interpreter creates an executable file. An interpreter creates an executable file. A compiler creates an executable file. A compiler creates an executable file. A compiler is source code. A compiler is source code. An interpreter is source code.

A difference between a compiler and an interpreter is that a compiler translates the entire source code into machine code before execution, producing an executable file, while an interpreter translates and executes the source code line by line without creating an executable file. So, the statement "A compiler creates an executable file" is true, but "An interpreter creates an executable file" is false.