JAMIA 2026 — Computer PYQ
JAMIA | Computer | 2026Which of the following is an interpreted programming language?
Choose the correct answer:
- A.
C
- B.
C++
- C.
Python
(Correct Answer) - D.
Pascal
Python
Explanation
Correct Answer: (c) Python
Detailed Explanation
Interpreted Languages: In an interpreted language, the source code is not translated into machine object code all at once before running. Instead, an interpreter reads and executes the program line-by-line or statement-by-statement at runtime. Python is a premier example of an interpreted language. When you execute a Python script, it is typically compiled to bytecode (.pyc files) and then immediately executed by the Python Virtual Machine (PVM).
Key Characteristic: Because execution happens on the fly, debugging can be easier, and the code is highly portable across different operating systems without needing recompilation.
Explanation
Correct Answer: (c) Python
Detailed Explanation
Interpreted Languages: In an interpreted language, the source code is not translated into machine object code all at once before running. Instead, an interpreter reads and executes the program line-by-line or statement-by-statement at runtime. Python is a premier example of an interpreted language. When you execute a Python script, it is typically compiled to bytecode (.pyc files) and then immediately executed by the Python Virtual Machine (PVM).
Key Characteristic: Because execution happens on the fly, debugging can be easier, and the code is highly portable across different operating systems without needing recompilation.
