What is the starting point for the execution of a program?
Function prototype
Main()
Function name
Return type
Where can the local variable to declare in a program?
Within the block
Outside the block
Anywhere in the program
None of these
Which statement is used to terminate the function?
Return
Void
Goto
Exit
Which one of the following can be passed as actual parameter in the function?
Constants
Expression
Default value
Variable
How can the call statement communicates with the function?
Variables
Parameters
How many values can return in a function?
Multiple
Single
Null
Double
What type of parameters will appear in the function call statement?
Default
Formal
Constant
Actual
Which of the following will act as place holder in function prototype?
Argument
Literal
Keyword
Which of the following become an alias in the call by reference method?
Prototype
Formal parameters
Which function call statement will create the new variable to store the arguments?
Call by value
Call by reference
Call by variable argument