Interpreted and compiled languages

From Computer Science Wiki
Revision as of 10:34, 11 May 2020 by Mr. MacKenty (talk | contribs) (Created page with "right|frame|Programming basics<ref>http://www.flaticon.com/</ref> A compiled language is a programming language whose implementations are typically compil...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Programming basics[1]

A compiled language is a programming language whose implementations are typically compilers (translators that generate machine code from source code), and not interpreters (step-by-step executors of source code, where no pre-runtime translation takes place)[2]

An interpreted language is a type of programming language for which most of its implementations execute instructions directly and freely, without previously compiling a program into machine-language instructions. The interpreter executes the program directly, translating each statement into a sequence of one or more subroutines, and then into another language (often machine code) [3]


References