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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!