Bird
0
0

Why is Python considered an interpreted language?

hard📝 Conceptual Q10 of 15
Python - Basics and Execution Environment
Why is Python considered an interpreted language?
ABecause Python code is executed line by line at runtime
BBecause Python code is compiled into machine code before running
CBecause Python requires manual memory management
DBecause Python cannot be run on multiple platforms
Step-by-Step Solution
Solution:
  1. Step 1: Understand interpreted vs compiled

    Interpreted languages run code line by line during execution, compiled languages convert all code before running.
  2. Step 2: Identify Python's execution method

    Python runs code line by line using an interpreter, not compiling to machine code first.
  3. Final Answer:

    Because Python code is executed line by line at runtime -> Option A
  4. Quick Check:

    Python execution = interpreted line-by-line [OK]
Quick Trick: Interpreted means run line-by-line, not precompiled [OK]
Common Mistakes:
MISTAKES
  • Thinking Python is compiled
  • Confusing memory management with interpretation

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Python Quizzes