1 Crore+ students have signed up on EduRev. Have you? Download the App |
In programming, the use of ___________ is one of the means to achieve modularity and reusability.
What will be the output of the following Python code?
def sayHello():
print(‘Hello World!’)
sayHello()
sayHello()
_________ can be defined as a named group of instructions that accomplish a specific task when it is invoked.
We can define our own functions while writing the program. Such functions are called __________.
________ length as the same code is not required to be written at multiple places in a program. This also makes debugging easier.
The items enclosed in “[ ]” are called ___________ and they are optional.
A function defined to achieve some task as per the programmer’s requirement is called a ____________.
_______ is a value passed to the function during the function call which is received in the corresponding parameter defined in the function header.
We can use the _________ function to find the identity of the object that the argument and parameter are referring to.
The statements outside the function indentation are not considered as _____________.