CBSE Class 11 Computer Science Question 58 of 63

Introduction to Python Modules — Question 5

Back to all questions
5
Question

Question 5

A module is not necessarily to be imported before being used.

Answer

False

Reason — A module must be imported before it can be used in a Python program. Without importing the module, the functions, classes, or variables defined within it cannot be accessed, leading to errors in the program.