Skip to content
#1. In file handling, what does this terms means ‘r’,’a’?
#2. _________ is a group of related statements that perform a specific task.
#3. ________ help break our program into smaller and modular chunks.
#4. Function avoid ________ and makes code reusable.
#5. _________ functions are functions that are built into python.
#6. _______ functions are functions defined by the users themselves.
#7. Keyword _____ marks the start of function header.
#8. A function _____ to uniquely identify it.
#9. _______ through which we pass values to a function.
#10. A ________ to mark the end of function header.
#11. An optional _______ statement to return a value from the function.
#12. The first string after the function header is called the _________
#13. The _____ statement is used to exit a function and go back to the place from where it was called.
#14. _____ of a variable is the portion of a program where the variable is recognized.
#15. ________ of a variable is the period throughout which the variable exits in the memory.
#16. Function arguments can have ______ values in python.
#17. ________ exceptions are raised as a result of an error in opening a particular file.
#18. Python allows us to handle the kind of situation through function calls with _______ number of arguments.
#19. _______ is the process of defining something in terms of itself.
#20. To insert 5 to the third position in list1, we use which command?
#21. _______ functions can have any number of arguments but only one expression.
#22. _________ function is a function that is defined without a name.
#23. Which of the following is invalid?
#24. All keywords in the python are in
#25. What is called when a function is defined inside a class?