#1. A _________ is a self contained program segment that carries out some specific, well defined task.
Previous
Next
#2. ____________ break large computing tasks into smaller ones.
Previous
Next
#3. The use of __________ avoids redundant programming of the same instructions can be placed within a single function, which can then accesses whenever it is needed.
Previous
Next
#4. C supports the use of ______ functions, which are used to carry out a number of commonly used operations or calculations.
Previous
Next
#5. ________ and _______ are examples of library functions.
Previous
Next
#6. _____________ are built in functions that are already defined and stored in header files.
Previous
Next
#7. Mathematical functions are defined in the header file _________
Previous
Next
#8. Returns the absolute value of a number, a number without its sign.
Previous
Next
#9. Functions used to handle many tasks on single character are called
Previous
Next
#10. Character functions are defined in the header file
Previous
Next
#11. Returns the previous integer number to the given decimal value.
Previous
Next
#12. Returns the next integer number to the given decimal value.
Previous
Next
#13. To check the given char is upper or not.
Previous
Next
#14. To check the char is lower or not.
Previous
Next
#15. It converts the given character into upper case.
Previous
Next
#16. It converts the given character into lower case.
Previous
Next
#17. To check whether the given character is an alphabet.
Previous
Next
#18. A function can be accessed by specifying its function _________, followed by a list of arguments enclosed in parenthesis and separated by commas.
Previous
Next
#19. A ______ is a set of definitions of variables and functions.
Previous
Next
#20. ___________ between the functions is through arguments and values returned by the functions.
Previous
Next
#21. __________ refers to the type of information represented by a variable.
Previous
Next
#22. _________ variables are always declared within a function and are local to the function in which they are declared.
Previous
Next
#23. _________ variables function as global variables.
Previous
Next
#24. ________ variables are similar to external variables.
Previous
Next
#25. _________ is a process whereby a function calls itself repeatedly, until some specified condition has been satisfied.