CBSE Class 11 Informatics Practices
Question 2 of 62
Getting Started with Python — Question 2
Back to all questions 2
Question Assertion (A): Python uses an interpreter to convert source code to object code.
Reasoning (R): Python interpreter is a special virtual engine that converts machine code to source code.
- Both A and R are true and R is the correct explanation of A.
- Both A and R are true but R is not the correct explanation of A.
- A is true but R is false.
- A is false but R is true.
A is true but R is false.
Explanation
Python uses an interpreter to convert source code to object code. The Python interpreter is a special virtual engine that converts source code (written in Python) to machine code that can be executed by the computer.