Function Fill in The Blanks
Function Fill in The Blanks
1. the first line of the function which contain the access specifies return types method name the list of parameter
is called______________
2. Method header is also referred to as ______________
3. Method signature is written by using __________ along with the ______________
4. A folder or directory containing a number of define classes form a _______________
5. ________________ specifies deal with the scope of use of a function
6. _____________indicates the type of outcome of a method to be returned to its caller
7. ________________ is a list of variables with their respective data types required by the function for internal
computation pass during method call
8. _______________ receive value from the caller program during method call
9. Statements that are enclosed within a pair of curly braces is known as __________ of the method
10. Statement that sends back the value from a method to its caller program is called ______________statement
11. If the method does not return any value then its return type is _________________
12. ______________ statement is used to exit from method
13. A process of using a method in a program is referred to as ______________________a method
14. The parameter described in the method header used to receive value from its caller is called
_____________________ parameter
15. The value actually passed to the method at the time of call is known as _______________ parameter
16. __________________ is the process of passing a copy of the actual parameters to the formal parameters
17. _________________ is the process of passing the address of actual parameters to the formal parameters
18. A function which return a value to its column method and does not change the state of the object is called
_____________________ function
19. A method which change the state of the object is called _______________________method
20. To function overloading Java implements ______________________
21. Function name along with parameter used in the function head I'll is known as function ________________
22. A function design in a such way that is called itself in its body is called _________________ function
23. Function used with the same name but the different types of arguments are known as _________________
24. A function contain ________________ and _____________________
25. Entire function body is enclosed under _______________________ brackets
26. The function which change the state of an object is known as ____________________
27. Parameters used in function call statement are known as ______________________
28. Parameters used in function definitions are called ______________________
29. the process of calling a function in such a way that the change the formal arguments reflects on the actual
parameter is known as_____________________
30. If function with the many definition is called________________________
31. Each function must be associated with ___________________________
32. ________________________ return types are used before of non returnable function
33. A function body is enclosed within a pair of __________________________
34. A function is invoked through a class type _____________________
35. Nested function is function within a ______________________________
36. If function with another function is known as __________________________ function
37. Method in a Java program resides in _________________________
38. The number and types of function argument are known as ____________________________
39. If the function does not return any value its return type is _______________________
40. A function can return only _____________________________value to its caller program