Which of the following is an example of an interpreted language?
Which of the following is an example of an interpreted language?
Python is an example of an interpreted language. Unlike compiled languages such as C++, Java, and Go, which are converted into machine code before they are run, interpreted languages like Python are executed by an interpreter at runtime. This allows for greater flexibility and ease of debugging, but can result in slower execution performance.
The following languages are compiled: C++ C# COBOL PASCAL Java (Note: Java is both a compiled language as well as an interpreted language.) Interpreted languages: scripting languages JavaScript Perl Python
can some clarify why B. is not the answer
Python is an interpreted language, meaning that its code is executed by an interpreter at runtime rather than being compiled into machine code beforehand. This allows for more flexibility and ease of debugging, although it may result in slower execution compared to compiled languages like C++, Java, and Go.