What is an interpreter?
An interpreter reads, translates, and executes source code line-by-line during runtime, without creating a separate executable file.
Verify This Answer
Cross-check this information using these trusted sources:
More FAQs in The Concept of Compilation vs Interpretation
A compiler is a software tool that translates the entire source code of a program into machine-level binary code before the program is executed.
C++ is fully compiled into optimized machine code before execution, whereas Python is interpreted on the fly, which adds overhead and slows execution.
Java is both. It is compiled into an intermediate 'Bytecode', which is then interpreted by the Java Virtual Machine (JVM) at runtime.
Still have questions?
Browse all our FAQs or reach out to our support team
