FC0-U61 · Question #402
FC0-U61 Question #402: Real Exam Question with Answer & Explanation
The correct answer is C: Python. Python is an example of an interpreted language, which is a type of programming language that does not need to be compiled before execution. Instead, an interpreter program translates and executes the source code line by line at run time. Interpreted languages are usually easier
Question
Options
- AC++
- BJava
- CPython
- DGo
Explanation
Python is an example of an interpreted language, which is a type of programming language that does not need to be compiled before execution. Instead, an interpreter program translates and executes the source code line by line at run time. Interpreted languages are usually easier to write and debug, but slower to execute than compiled languages. C++ and Java are examples of compiled languages, which are types of programming languages that need to be translated into executable machine code by a compiler program before execution. Compiled languages are usually faster to execute but harder to write and debug than interpreted languages. Go is an example of a hybrid language, which is a type of programming language that combines features of both compiled and interpreted languages. Hybrid languages use an intermediate code that can be executed by a virtual machine or an interpreter at run time.
Community Discussion
No community discussion yet for this question.