OA EXAM SCRIPT 2026 COMPREHENSIVE
QUESTIONS WITH DETAILED RATIONALES
GRADED A+
⩥ What is IT automation?
Answer: IT automation refers to the use of software to create repeatable
instructions and processes to replace or reduce human interaction with
IT systems.
⩥ What are core concepts of Python?
Answer: Core concepts include variables, data types, control structures
(if statements, loops), functions, and modules.
⩥ What is a variable in Python?
Answer: A variable is a reserved memory location to store values, which
can be changed during program execution.
⩥ What are common data types in Python?
Answer: Common data types include integers, floats, strings, lists,
tuples, sets, and dictionaries.
⩥ What is a list in Python?
, Answer: A list is a mutable, ordered collection of items that can contain
elements of different data types.
⩥ What is a dictionary in Python?
Answer: A dictionary is an unordered collection of key-value pairs,
where each key is unique.
⩥ What is a function in Python?
Answer: A function is a block of reusable code that performs a specific
task and can take inputs and return outputs.
⩥ What is a module in Python?
Answer: A module is a file containing Python code that can define
functions, classes, and variables, which can be reused in other Python
programs.
⩥ What is error handling in Python?
Answer: Error handling in Python involves using try-except blocks to
catch and manage exceptions that may occur during program execution.
⩥ What is the purpose of the 'try' block?
Answer: The 'try' block allows you to test a block of code for errors
while executing it.