Informatics Practices

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.

  1. Both A and R are true and R is the correct explanation of A.
  2. Both A and R are true but R is not the correct explanation of A.
  3. A is true but R is false.
  4. A is false but R is true.

Getting Started

3 Likes

Answer

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.

Answered By

2 Likes


Related Questions