asked 11.2k views
13 votes
What is the difference between an interpreted and a compiled language?

asked
User Dulacp
by
8.3k points

1 Answer

5 votes

Answer:

The interpreted language is a programming language that is typically processed rather than compiled into machine code. It is one in which the instructions are received and processed by another program rather than directly performed by the client computer. JavaScript, Perl, Python, BASIC, and other interpretable languages. A compiled language is a programming language that is typically compiled rather than interpreted. It is one in which the software, once built, is represented in the target machine's code; this machine code is indecipherable by people. C, C++, C#, and other compiled languages.

answered
User Hafsa Mushtaq
by
8.5k points