Questions and Answers (2026/2027) | Practice
Review | A+ Verified
• Python . CORRECT ANSWER: A high-level interpreted programming language
known for simplicity readability and versatility.
• Guido van Rossum . CORRECT ANSWER: The creator of Python who first
released it in 1991.
• Interpreted Language . CORRECT ANSWER: A language that executes code
line-by-line without requiring prior compilation.
• Programming Paradigm . CORRECT ANSWER: A fundamental style or
approach to structuring and organizing code.
• Procedural Programming . CORRECT ANSWER: A paradigm that focuses on
step-by-step instructions and linear execution.
• Object-Oriented Programming (OOP) . CORRECT ANSWER: A paradigm that
organizes code around objects containing data and methods.
• Functional Programming . CORRECT ANSWER: A paradigm that emphasizes
the use of functions and immutable data.
• Readable Syntax . CORRECT ANSWER: A Python feature that makes code clear
easy to understand and maintain.
,• Dynamic Typing . CORRECT ANSWER: A feature where variable types are
determined at runtime rather than declared explicitly.
• Standard Library . CORRECT ANSWER: A built-in collection of modules and
packages that provide ready-to-use functionality.
• Encapsulation . CORRECT ANSWER: An OOP principle that restricts direct
access to data and bundles it with related methods.
• Polymorphism . CORRECT ANSWER: An OOP principle that allows objects to
be treated as instances of their parent class enabling flexibility.
• Python Syntax . CORRECT ANSWER: The set of rules that define how symbols
keywords and structure form valid Python programs.
• Indentation . CORRECT ANSWER: The use of spaces to define code blocks and
structure in Python typically four spaces per level.
• Code Block . CORRECT ANSWER: A group of statements that belong together
and are defined by indentation in Python.
• Comment . CORRECT ANSWER: A note in code beginning with # that is
ignored by the Python interpreter.
• Variable . CORRECT ANSWER: A named storage location created by assigning
a value using the equals sign.
• Data Type . CORRECT ANSWER: The classification of data such as integers
floats strings lists tuples and dictionaries.
,• Conditional Statement . CORRECT ANSWER: A control structure using if elif
and else to execute code based on conditions.
• Loop . CORRECT ANSWER: A structure such as for or while that repeats code
multiple times.
• Class . CORRECT ANSWER: A blueprint for creating objects that bundle data
and methods in object-oriented programming.
• print() Function . CORRECT ANSWER: A built-in function used to display
output to the console.
• Function . CORRECT ANSWER: A reusable block of code defined using the def
keyword.
• JSON . CORRECT ANSWER: A text-based data format that stores information
in key-value pairs and is supported in Python using the json module.
• Run Python Script . CORRECT ANSWER: Executing a Python file from the
command line using a terminal or command prompt.
• python your_script.py . CORRECT ANSWER: Command used to run a Python
script in the terminal.
• python3 your_script.py . CORRECT ANSWER: Command used to run a Python
3 script if multiple Python versions are installed.
, • Terminal . CORRECT ANSWER: A command-line interface used to navigate
directories and execute programs.
• Command Prompt . CORRECT ANSWER: The Windows command-line tool
used to run commands including Python scripts.
• Interactive Mode . CORRECT ANSWER: A Python environment that allows
code to be executed line by line.
• REPL . CORRECT ANSWER: Stands for Read Eval Print Loop and refers to
Python's interactive shell.
• python Command . CORRECT ANSWER: A command typed in the terminal to
enter the Python interactive shell.
• python3 Command . CORRECT ANSWER: A command used to enter the
Python 3 interactive shell.
• IDE . CORRECT ANSWER: Integrated Development Environment used for
writing debugging and running code.
• PyCharm . CORRECT ANSWER: A popular Python IDE that provides tools for
coding and debugging.
• IDLE . CORRECT ANSWER: A simple Python IDE that comes bundled with
Python installation.
• Comment . CORRECT ANSWER: Text added to code for humans to read that is
ignored during program execution.