Question: A pseudo code program contains the following function definition.This is not syntax error. Function cube(num) return num * num * num End Function Which statement
A pseudo code program contains the following function definition.This is not syntax error.
Function cube(num)
return num * num * num
End Function
Which statement passes the value 4 to this function and assigns its return value to the variable result.
return(num, num, num)
Set result = cube(4)
Set cube = result(4)
Set result = cube( num1, num2)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
