Question: this is java data structure question: Given the following recursive function : public int fas (int a, int b) { if (a % b ==
this is java data structure question: Given the following recursive function :
public int fas (int a, int b)
{
if (a % b == 0)
return b;
else
return fas (b, a % b);
}
a. What is the output by fas (37, 5) and write a recursive diagram in horizontal order. [5 marks]
b. Write a recursive diagram in horizontal order and write the output if fas (4,27 ) is called. [5 marks]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
