Robotics & Artificial Intelligence

What is meant by an interpreter? Name an interpreter based programming language.

Getting Started

3 Likes

Answer

An interpreter is a software that is used to convert a program written in a high-level language into its equivalent machine language. It accepts instructions and generates its machine codes line-by-line or statement-by-statement. The control does not move to the next line of statement until the previous one is corrected.

Python is an interpreter-based programming language.

Answered By

3 Likes


Related Questions