English

The following function task() is a part of some class. Assume ‘m’ and ‘n’ are positive integers greater than 0. Answer the questions given below along with dry / run working. - Computer Science (Theory)

Advertisements
Advertisements

Question

The following function task() is a part of some class. Assume ‘m’ and ‘n’ are positive integers greater than 0. Answer the questions given below along with dry / run working.

int task(int m, int n)
{ if(m=n)
      return m;
else if (m>n)
      return task(m-n, n);
else
     return task(m, n-m)
}
  1. What will the function task() return when the value of m=30 and n=45?
  2. What function does task() perform, apart from recursion?
Answer in Brief

Solution

  1. 15
  2. It returns the difference between its arguments.

Explanation:

The task function compares two arguments for equality and calls itself repeatedly until both arguments are equal.

shaalaa.com
Recursion
  Is there an error in this question or solution?
2022-2023 (March) Official
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×