Assignment:
Q1. Given the following function declaration, fill in the body so that the function will return 5 times the parameter squared plus 22.7 times the parameter minus 17.6
double funTwo (double x)
// your code here
return z
end function funTwo
Q2. Given the following function declaration, fill in the body so that the function will return the sum of the integers between the first and second parameters, inclusive. You may assume that the first parameter is less than the second.
int funThree (int m, int n)
// your code here
return a
end function funThree
Q3. Given the following function declaration, fill in the body so that the function will return the greatest common divisor of the two parameters. You may assume that the parameters are both greater than 0.
int funFour (int a, int b)
// your code here
return z
end function funFour
Q4. Given the following function declaration, fill in the body so that the function will return the sum of the squares of the integers between the two parameters, inclusive. You may assume that the first parameter is less than the second.
int funSix (int x, int y)
// your code here
return z
end function funSix
Q5. Given the following function declaration, fill in the body so that the function will return true if the parameter is a multiple of 7. You may assume that the parameters is greater than 0.
boolean funEight (int x)
// your code here
return z
end function funEight
Q6. What is the output of the following function call, given the function shown after main?
main
write nufOne (10)
end main
int nufOne (int n)
int z = 2*n*n*n + 7*n*n + 4*n + 8
return z
end function nufOne
Q7. What is the output of the following function call, given the function shown after main?
main
nufFive (1, 3, 12)
end m
void nufFive (int a, int b, int c)
int n
for n = a step b to c
write n, ": ", nufFive (n)
end for
end nufFive
int nufFour (int k)
int z = 2*k + 7
return z
end function nufFour
Q8. What is the output of the following function call, given the function shown after main?
main
int n, m
for n = 1 step 2 to 10
nufSix ()
end for
write newLine
for m = 3 step 4 to 12
nufSix ()
end for
write newLine
end main
void nufSix ()
write "*" // no new line here
end nufFive.