Write True or False
1. In pseudocode you can have as many functions as you like but you must
only have a limited number of parameters.
2. The following is a correct call to a function that takes two value
parameters:
call calcFinal(valFormative, valSummative)
3. During the execution of a function procedure, control is passed back to the
calling module with the return statement.
4. The following is a valid function header:
sub calcValues(valN1, valN2)
5. Values that are passed to a function in the calling module are referred to
as parameters.
1 false
2 true
3 true
4 false
5 false
Comments
Leave a comment