Report Bug
Qus : Python uses a/an _______ to convert source code
Qus सोर्स कोड को परिवर्तित करने के लिए पायथन _______ का उपयोग करता है

A. Interpreter
B. Compiler
C. Combination of Compiler and Interpreter
D. all of these


Solution
A. Interpreter



Explanation

Python uses an interpreter to convert source code into machine-readable bytecode and execute it. Unlike compiled languages, where the source code is converted into machine code before execution, Python's interpreter translates the source code line by line as it runs the program. This allows for a more dynamic and interactive development process.




Report Bug