CBSE Class 12 Computer Science Question 96 of 101

Functions — Question 8

Back to all questions
8
Question

Question 8

A function in Python is used by invoking it via a function call.

Answer

True

Reason — In Python, a function is used by invoking it through a function call. This involves using the function's name followed by parentheses (), which may contain arguments if the function requires any. The function call executes the code inside the function's body and then returns to the point in the code where the function was called from.