CBSE Class 12 Computer Science Question 91 of 101

Functions — Question 3

Back to all questions
3
Question

Question 3

Once a function is defined, it may be called only once from many different places in a program.

Answer

False

Reason — Once a function is defined in Python, it can be called multiple times from different places in a program. Functions are reusable blocks of code, and their purpose is to be called and executed whenever needed.