Question: What does the following recursive method determine? public boolean question 1 6 ( int [ ] a , int [ ] b , int j
What does the following recursive method determine?
public boolean questioninta int b int j
if mathrmj alength return false;
else if j blength return true;
else return questiona b j;
returns true if a and b are equal in size, false otherwise
returns true if a is larger than b false otherwise
returns true if b is larger than a false otherwise
returns true if a and b have no elements
returns the length of array a length of array b
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
