DEV Community

Mafuzur Rahman
Mafuzur Rahman

Posted on

#interpreted_language

Q: What is interpreted language means?

An interpreted language is a programming language where the code is executed directly, without being compiled into machine code first. In an interpreted language, the source code is read by the interpreter, which then executes the instructions directly.

Interpreted languages are typically easier to learn and use than compiled languages because they do not require the developer to perform a compilation step before running the code. Interpreted languages also tend to have more flexible and dynamic features than compiled languages, making them well-suited for rapid prototyping and scripting.

Some examples of popular interpreted languages include Python, JavaScript, Ruby, and PHP.

Top comments (0)