look at the following pseudocode algorithm. what is the recursive case for the algorithm?
35 algorithm Test14(int x)
if (x < 8)
return (2x)
else
return (3. Test14(x - 8) + 8)
end Test14
A) A method that calls itself.
B) A method that contains a static field.
C) A method that has a loop.
D) A method that accepts no arguments.