Exam FC0-U61 All QuestionsBrowse all questions from this exam
Question 86

Which of the following is an example of an interpreted language?

    Correct Answer: C

    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.

Discussion
Dion79Option: C

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

Ola_jidejeromeOption: B

can some clarify why B. is not the answer

ROCompTIA

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.