True or false statemets
1A function call can be in a if-statement, display statement or assignment statement
2 A function procedure is said to be value returning and a sub procedure is a void function that does not return a value at the end of the execution.
3 double CalcPercentage(double, double); is an example of a function prototype
4 A reference parameter is the address of the variable in the computer’s memory
5 A void function can have value and reference parameters
1A function call can be in a if-statement, display statement or assignment statement
True
2 A function procedure is said to be value returning and a sub procedure is a void function that does not return a value at the end of the execution.
True
3 double CalcPercentage(double, double); is an example of a function prototype
True
4 A reference parameter is the address of the variable in the computer’s memory
True
5 A void function can have value and reference parameters
True
Comments
Leave a comment