All questions of Recursion for Computer Science Engineering (CSE) Exam

Predict output of following program
#include <stdio.h>
int fun(int n)
{
    if (n == 4)
       return n;
    else return 2*fun(n+1);
}
int main()
{
   printf("%d ", fun(2));
   return 0;
  • a)
    4
  • b)
    8
  • c)
    16
  • d)
    Runtime Error
Correct answer is option 'C'. Can you explain this answer?


Explanation:

- The given program is a recursive function that calls itself until the base case is reached.
- The function `fun()` takes an integer `n` as a parameter and returns either `n` if `n` is equal to 4, or `2*fun(n+1)` if `n` is not equal to 4.
- In the `main()` function, `fun(2)` is called, which will recursively call `fun()` with increasing values until `n` reaches 4.
- When `n` reaches 4, the base case is met, and the function returns 4.
- Substituting the return values back into the recursive calls, we get:
`fun(2) = 2*fun(3) = 2*(2*fun(4)) = 2*(2*4) = 16`
- Therefore, the output of the program will be `16`.

So, the correct answer is:
c) 16

#include<stdio.h>
int f(int *a, int n)
{
  if(n <= 0) return 0;
  else if(*a % 2 == 0) return *a + f(a+1, n-1);
  else return *a - f(a+1, n-1);
}
  
int main()
{
  int a[] = {12, 7, 13, 4, 11, 6};
  printf("%d", f(a, 6));
  getchar();
  return 0;
}
  • a)
    -9
  • b)
    5
  • c)
    15
  • d)
    19
Correct answer is option 'C'. Can you explain this answer?

Sanya Agarwal answered
f() is a recursive function which adds f(a+1, n-1) to *a if *a is even. If *a is odd then f() subtracts f(a+1, n-1) from *a. See below recursion tree for execution of f(a, 6). .
 f(add(12), 6) /*Since 12 is first element. a contains address of 12 */
    |
    |
 12 + f(add(7), 5) /* Since 7 is the next element, a+1 contains address of 7 */
        |
        |
     7 - f(add(13), 4)
              |
              |
           13 - f(add(4), 3)
                     |
                     |
                  4 + f(add(11), 2)
                             |
                             |
                           11 - f(add(6), 1)
                                    |
                                    |
                                 6 + 0
So, the final returned value is 12 + (7 – (13 – (4 + (11 – (6 + 0))))) = 15

Consider the following recursive C function. If get(6) function is being called in main() then how many times will the get() function be invoked before returning to the main()?
void get (int n)
{
   if (n < 1) return;
   get(n-1);
   get(n-3);
   printf("%d", n);
}
  • a)
    15
  • b)
    25
  • c)
    35
  • d)
    45
Correct answer is option 'B'. Can you explain this answer?

Sanya Agarwal answered
get(6) [25 Calls]
                              /      \
               [17 Calls] get(5)       get(3) [7 Calls]
                        /     \
                    get(4)    get(2)[5 Calls]
                   /    \ 
     [7 Calls] get(3)  get(1)[3 Calls]
                /     \
             get(2)   get(0)
            /    \
[3 Calls]get(1)  get(-1) 
   /  \
get(0) get(-2)
We can verify the same by running below program. [sourcecode language="CPP"] # include int count = 0; void get (int n) { count++; if (n < 1) return; get(n-1); get(n-3); } int main() { get(6); printf("%d ", count); } [/sourcecode] Output: 25

Output of following program?
#include <stdio.h>
int fun(int n, int *f_p)
{
    int t, f;
    if (n <= 1)
    {
        *f_p = 1;
        return 1;
    }
    t = fun(n- 1,f_p);
    f = t+ * f_p;
    *f_p = t;
    return f;
}
 
int main()
{
    int x = 15;
    printf (" %d n", fun(5, &x));
    return 0;
}
  • a)
    6
  • b)
    8
  • c)
    14
  • d)
    15
Correct answer is option 'B'. Can you explain this answer?

Ravi Singh answered
Let x is stored at location 2468 i.e. &x = 2468
(dots are use just to ensure alignment)
x = 15
fun(5, 2468)
...{t = fun(4, 2468)
.......{t = fun(3, 2468)
...........{t = fun(2,2468)
...............{t = fun(1, 2468)
...................{// x=1
........................return 1}
................t = 1
................f = 2 //1+1 //since *f_p is x
................x = t = 1
................return 2}
...........t = 2
...........f = 2+1
...........x = t = 2
...........return 3}
........t = 3
........f = 3+2
........x = t = 3
........return 5}
....t = 5
....f = 5+3
....x = t = 5
....return 8}
which implies fun (5,2468) is 8.

Consider the same recursive C function that takes two arguments
Q. What is the return value of the function foo when it is called as foo(513, 2)?
  • a)
    9
  • b)
    8
  • c)
    5
  • d)
    2
Correct answer is option 'D'. Can you explain this answer?

Yash Patel answered
foo(513, 2) will return 1 + foo(256, 2). All subsequent recursive calls (including foo(256, 2)) will return 0 + foo(n/2, 2) except the last call foo(1, 2). The last call foo(1, 2) returns 1. So, the value returned by foo(513, 2) is 1 + 0 + 0…. + 0 + 1. The function foo(n, 2) basically returns sum of bits (or count of set bits) in the number n.

Consider the following C function.
int fun (int n)
{
  int x=1, k;
  if (n==1) return x;
  for (k=1; k<n; ++k)
     x = x + fun(k) * fun(n – k);
  return x;
}
The return value of fun(5) is __________.
  • a)
    0
  • b)
    26
  • c)
    51
  • d)
    71
Correct answer is option 'C'. Can you explain this answer?

Sanya Agarwal answered
fun(5) = 1 + fun(1) * fun(4) + fun(2) * fun(3) + 
             fun(3) * fun(2) + fun(4) * fun(1)
       = 1 + 2*[fun(1)*fun(4) + fun(2)*fun(3)]
Substituting fun(1) = 1
       = 1 + 2*[fun(4) + fun(2)*fun(3)]
Calculating fun(2), fun(3) and fun(4)
fun(2) = 1 + fun(1)*fun(1) = 1 + 1*1 = 2
fun(3) = 1 + 2*fun(1)*fun(2) = 1 + 2*1*2 = 5
fun(4) = 1 + 2*fun(1)*fun(3) + fun(2)*fun(2)
       = 1 + 2*1*5 + 2*2 = 15
Substituting values of fun(2), fun(3) and fun(4)
fun(5) = 1 + 2*[15 + 2*5] = 51 

Consider the same recursive C function that takes two arguments
unsigned int foo(unsigned int n, unsigned int r) {
if (n  > 0) return (n%r +  foo (n/r, r ));
else return 0;
}
What is the return value of the function foo when it is called as foo(513, 2)?
  • a)
    9
  • b)
    8
  • c)
    5
  • d)
    2
Correct answer is option 'D'. Can you explain this answer?

Yash Patel answered
foo(513, 2) will return 1 + foo(256, 2). All subsequent recursive calls (including foo(256, 2)) will return 0 + foo(n/2, 2) except the last call foo(1, 2) . The last call foo(1, 2) returns 1. So, the value returned by foo(513, 2) is 1 + 0 + 0…. + 0 + 1. The function foo(n, 2) basically returns sum of bits (or count of set bits) in the number n.

What does the following function do?
int fun(unsigned int n)
{
if (n == 0 || n == 1)
return n;
 if (n%3 != 0)
return 0;
return fun(n/3);
}
  • a)
    It returns 1 when n is a multiple of 3, otherwise returns 0
  • b)
    It returns 1 when n is a power of 3, otherwise returns 0
  • c)
    t returns 0 when n is a multiple of 3, otherwise returns 1
  • d)
    It returns 0 when n is a power of 3, otherwise returns 1
Correct answer is option 'B'. Can you explain this answer?

Ravi Singh answered
Lets solve with example, n = 27 which power of 3. First time if condition is false as n is neither equal to 0 nor equal to 1 then 27%3 = 0. Here, again if condition false because it is equal to 0. Then fun(27/3) will call. Second time if condition is false as n is neither equal to 0 nor equal to 1 then 9%3 = 0. Here again if condition false because it is equal to 0. Then fun (9/3) will call and third time if condition is false as n is neither equal to 0 nor equal to 1 then 3%3 = 0. Here again if condition false because it is equal to 0. Then fun(3/3) will call here n==1 if condition gets true and it return n i.e. 1. Option (B) is correct.

Consider the following function
double f(double x){
  if (abs(x*x - 3) < 0.01) return x;
  else return f(x/2 + 1.5/x);
}
Give a value q (to 2 decimals) such that f(q) will return q:_____.
  • a)
    1.73
  • b)
    2.24
  • c)
    4.22
  • d)
    3.42
Correct answer is option 'A'. Can you explain this answer?

Harsh Sen answered
The given function is incomplete. The condition inside the if statement is missing. Additionally, there is no return statement to specify the value to be returned by the function.

To complete the function, we need to provide the condition inside the if statement and specify the return value. Here's an example of a possible implementation:

```cpp
#include

double f(double x) {
if (std::abs(x*x - 3) < 0.0001)="" />
return x * x;
} else {
return x;
}
}
```

In this example, the condition inside the if statement checks if the absolute difference between `x*x` and 3 is less than 0.0001. If the condition is true, the function returns `x * x`, otherwise it returns `x`.

 
int f(int n)

    static int r = 0;  
 if (n <= 0) return1;  
 if (n > 3)    
{   r = n;        
return f(n-2) + 2;  
 }
    return f(n-1) + r;
}
What is the value of f(5)?
  • a)
    5
  • b)
    7
  • c)
    9
  • d)
    18
Correct answer is option 'D'. Can you explain this answer?

f(5) = f(3)+2  
The line "r = n" changes value of r to 5.  Since r 
is static, its value is shared be all subsequence 
calls.  Also, all subsequent calls don't change r
because the statement "r = n" is in a if condition 
with n > 3.

f(3) = f(2)+5
f(2) = f(1)+5
f(1) = f(0)+5
f(0) = 1

So f(5) = 1+5+5+5+2 = 18 

Predict the output of following program
#include <stdio.h>
int f(int n)
{
if(n <= 1)
return 1;
if(n%2 == 0)
return f(n/2);
return f(n/2) + f(n/2+1);
}
int main()
{
printf("%d", f(11));
return 0;
}
  • a)
    Stack Overflow
  • b)
    3
  • c)
    4
  • d)
    5
Correct answer is option 'D'. Can you explain this answer?

Ravi Singh answered
On successive recursion F(11) will be decomposed into F(5) + F(6) -> F(2) + F(3) + F(3) -> F(1) + 2 * [F(1) + F(2)] -> 1 + 2 * [1 + F(1)] -> 1 + 2 * (1 + 1) -> 5. Hence , option D is the correct answer i.e, 5.

Which of the following statements are CORRECT?
1) Static allocation of all data areas by a compiler makes it impossible to implement recursion.
2) Automatic garbage collection is essential to implement recursion
3) Dynamic allocation of activation records is essential to implement recursion
4) Both heap and stack are essential to implement recursion
  • a)
    1 and 2 only 
  • b)
    2 and 3 only 
  • c)
    3 and 4 only 
  • d)
    1 and 3 only 
Correct answer is option 'D'. Can you explain this answer?

Crack Gate answered
Statement 1 – True
Dynamic memory allocation is necessary for implementing recursion because the number of function calls is not known in advance, requiring the use of a function call stack.
Statement 2 – False
Automatic garbage collection is not essential for recursion implementation, as languages provide specific functions for manual memory management.
Statement 3 – True
Dynamic memory allocation is required for recursion since the exact number of function calls cannot be predetermined.
Statement 4 – False
Recursion requires a stack structure. If a heap is used, it must be simulated as a stack for recursion purposes. The heap is generally used for user-driven dynamic memory allocation and is not needed for function calls. Thus, both stack and heap are not required simultaneously; either one is sufficient to implement recursion.
Therefore, statements 1 and 3 are true.

What will be the output of the following C program?
void count (int n) {
static int d=1;
printf ("%d",n);
printf ("%d",d);
 d++;
if (n>1) count (n-1);
 printf ("%d",d);
}
void main(){
 count (3);
}
  • a)
    3 1 2 2 1 3 4 4 4
  • b)
    3 1 2 1 1 1 2  2 2
  • c)
    3 1 2 2 1 3  4
  • d)
    3 1 2 1 1 1  2
Correct answer is option 'A'. Can you explain this answer?

Count(3) will print value of n and d. So 3 1 will be printed 
and d will become 2. 

Then count(2) will be called. It will print value of n and d. 
So 2 2 will be printed and d will become 3. 

Then count(1) will be called. It will print value of n and d.
So 1 3 will be printed and d will become 4. 

Now count(1) will print value of d which is 4. count(1) will 
finish its execution. 

Then count(2) will print value of d which is 4. 

Similarly, count(3) will print value of d which is 4. 
So series will be A.

Consider the class of recursive and iterative programs. Which of the following is false?
  • a)
    Recursive programs are more powerful than iterative programs.
  • b)
    For every iterative program there is an equivalent recursive program.
  • c)
    Recursive programs require dynamic memory management.
  • d)
    Recursive programs do not terminate sometimes.
  • e)
    Iterative programs and recursive programs are equally expressive.
Correct answer is option 'E'. Can you explain this answer?

Shubham Sharma answered
Introduction:
The given statement is asking which of the following options is false when considering the class of recursive and iterative programs. We will evaluate each option and explain why it is either true or false.

Analysis of each option:

a) Recursive programs are more powerful than iterative programs:
This statement is true. Recursive programs have the ability to solve problems by breaking them down into smaller subproblems, which can be solved by calling the same function recursively. This allows recursive programs to solve complex problems that may be difficult to solve using iterative methods alone.

b) For every iterative program there is an equivalent recursive program:
This statement is true. It is possible to convert any iterative program into an equivalent recursive program and vice versa. However, the conversion process may not always be straightforward, and the resulting recursive program may not be as efficient as the original iterative program.

c) Recursive programs require dynamic memory management:
This statement is true. Recursive programs often require the use of dynamic memory allocation to create new instances of the function on the call stack. Each recursive call creates a new instance of the function with its own set of variables and memory allocation. Failure to properly manage dynamic memory can lead to memory leaks or stack overflow errors.

d) Recursive programs do not terminate sometimes:
This statement is true. Recursive programs may not terminate if there is a bug in the termination condition or if the recursion depth exceeds the limitations of the system. This can result in an infinite loop, causing the program to hang or crash. Proper termination conditions and recursive depth management are essential to ensure the termination of recursive programs.

e) Iterative programs and recursive programs are equally expressive:
This statement is false. Recursive programs and iterative programs are not equally expressive. Recursive programs have the ability to solve a wider range of problems due to their ability to break down complex problems into smaller subproblems. Iterative programs, on the other hand, use loops and iterations to repeat a set of instructions until a specific condition is met. While both approaches have their strengths and weaknesses, recursive programs have a higher level of expressive power.

Output of following program?
#include<stdio.h>
void print(int n)
{
    if (n > 4000)
return;
printf("%d ", n);
print(2*n);
printf("%d ", n);
}
int main()
{
print(1000);
getchar();
return 0;
}
  • a)
    1000 2000 4000
  • b)
    1000 2000 4000 4000 2000 1000
  • c)
    1000 2000 4000 2000 1000
  • d)
    1000 2000 2000 1000
Correct answer is option 'B'. Can you explain this answer?

Sanya Agarwal answered
First time n=1000 Then 1000 is printed by first printf function then call print(2*1000) then again print 2000 by printf function then call print(2*2000) and it prints 4000 next time print(4000*2) is called. Here 8000 is greater than 4000 condition becomes true and it return at function(2*4000). Here n=4000 then 4000 will again print through second printf. Similarly print(2*2000) after that n=2000 then 2000 will print and come back at print(2*1000) here n=1000, so print 1000 through second printf. Option (B) is correct.

What does the following function do?
  • a)
    It returns 1 when n is a multiple of 3, otherwise returns 0
  • b)
    It returns 1 when n is a power of 3, otherwise returns 0
  • c)
    It returns 0 when n is a multiple of 3, otherwise returns 1
  • d)
    It returns 0 when n is a power of 3, otherwise returns 1
Correct answer is option 'B'. Can you explain this answer?

Aryan Batheja answered
Lets solve with example, n = 27 which power of 3. First time if condition is false as n is neither equal to 0 nor equal to 1 then 27%3 = 0. Here, again if condition false because it is equal to 0. Then fun(27/3) will call. Second time if condition is false as n is neither equal to 0 nor equal to 1 then 9%3 = 0. Here again if condition false because it is equal to 0. Then fun (9/3) will call and third time if condition is false as n is neither equal to 0 nor equal to 1 then 3%3 = 0. Here again if condition false because it is equal to 0. Then fun(3/3) will call here n==1 if condition gets true and it return n i.e. 1. Option (B) is correct.

double foo(int n)
{
int i;
double sum;
if(n == 0)
{return 1.0;
}
else
{
sum = 0.0;
for(i = 0; i < n; i++)
{
 sum += foo(i);
}
return sum;
}
}
Suppose we modify the above function foo() and stores the value of foo(i) 0 <= i < n, as and when they are computed. With this modification the time complexity for function foo() is significantly reduced. The space complexity of the modified function would be:
  • a)
  • b)
  • c)
  • d)
Correct answer is option 'B'. Can you explain this answer?

Akshay Singh answered
The modification being proposed is tabulation method of Dynamic Programming.
So let we have an auxillary array which stores the value of foo(i) once it is computed and can be used at later stage .So foo(i) is not called again , instead lookup from the table takes place. It would be something like :
#include <stdio.h>
#define max 1000
int foo[max];
foo(int n) {
if(foo[n] == -1) //compute it and store at foo[n] and return
else // return foo[n] directly
}
int main(void) {
//initialize all elements of foo[max] to -1
return 0;
}Using this approach , we need an auxillary array of size n to store foo(i) where i ranges from 0 to n-1.
So space complexity of this method = O(n) And function foo(n) computes 2n - 1    

Predict the output of following program
  • a)
    Stack Overflow
  • b)
    3
  • c)
    4
  • d)
    5
Correct answer is option 'D'. Can you explain this answer?

Aditya Tiwari answered
Whenever such small recursive programs are given, apply recursive tree method along with dynamic programming. Here f(11)=f(5)+f(6) f(5)=f(2)+f(3) f(2)=f(1)=1 f(3)=f(1)+f(2)=1+1=2 so f(5) becomes 3 Now, f(6)=f(3)=2 and finally f(11)=3+2=5

Find the number of elements in the following array.
float f [6] [4] [2]; 
  • a)
    12
  • b)
    26
  • c)
    48
  • d)
    20
Correct answer is option 'C'. Can you explain this answer?

Crack Gate answered
A number of elements present in the array can be found by calculating the length of the array.
Algorithm:
Step 1: Start
Step 2: Initialize arr[] = {1, 2, 3, 4, 5, 6}
Step 3: length = sizeof(arr) / sizeof(arr[0])
Step 4: Print "number of elements present in given array" by assigning length.
Step 5: Return 0
Step 6: End
Analysis:- float f [6] [4] [2]
Number of element = 6 × 4 × 2 = 48.
So, the number of elements in the array, float f [6] [4] [2] is 48.

  • a)
    -9
  • b)
    5
  • c)
    15
  • d)
    19
Correct answer is 'C'. Can you explain this answer?

Shraddha Kaur answered
f() is a recursive function which adds f(a+1, n-1) to *a if *a is even. If *a is odd then f() subtracts f(a+1, n-1) from *a. See below recursion tree for execution of f(a, 6).
So, the final returned value is 12 + (7 – (13 – (4 + (11 – (6 + 0))))) = 15

What will be the output of the following C program?
  • a)
    3 1 2 2 1 3 4 4 4
  • b)
    3 1 2 1 1 1 2 2 2
  • c)
    3 1 2 2 1 3 4
  • d)
    3 1 2 1 1 1 2
Correct answer is option 'A'. Can you explain this answer?

Kajal Sharma answered
count(3) will print value of n and d. So 3 1 will be printed and d will become 2.
Then count(2) will be called. It will print value of n and d.
So 2 2 will be printed and d will become 3.
Then count(1) will be called. It will print value of n and d.
So 1 3 will be printed and d will become 4.
Now count(1) will print value of d which is 4. count(1) will finish its execution.
Then count(2) will print value of d which is 4.
Similarly, count(3) will print value of d which is 4.
So series will be A.

 Consider the following code snippet:

What will happen when the above snippet is executed?
  • a)
    The code will be executed successfully and no output will be generated
  • b)
    The code will be executed successfully and random output will be generated
  • c)
    The code will show a compile time error
  • d)
    The code will run for some time and stop when the stack overflows
Correct answer is option 'D'. Can you explain this answer?

Krithika Gupta answered
Every function call is stored in the stack memory. In this case, there is no terminating condition(base case). So, my_recursive_function() will be called continuously till the stack overflows and there is no more space to store the function calls. At this point of time, the program will stop abruptly.

Output of following program?
  • a)
    1000 2000 4000
  • b)
    1000 2000 4000 4000 2000 1000
  • c)
    1000 2000 4000 2000 1000
  • d)
    1000 2000 2000 1000
Correct answer is option 'B'. Can you explain this answer?

Aryan Batheja answered
First time n=1000 Then 1000 is printed by first printf function then call print(2*1000) then again print 2000 by printf function then call print(2*2000) and it prints 4000 next time print(4000*2) is called. Here 8000 is greater than 4000 condition becomes true and it return at function(2*4000). Here n=4000 then 4000 will again print through second printf. Similarly print(2*2000) after that n=2000 then 2000 will print and come back at print(2*1000) here n=1000, so print 1000 through second printf. Option (B) is correct.

Chapter doubts & questions for Recursion - Programming and Data Structures 2025 is part of Computer Science Engineering (CSE) exam preparation. The chapters have been prepared according to the Computer Science Engineering (CSE) exam syllabus. The Chapter doubts & questions, notes, tests & MCQs are made for Computer Science Engineering (CSE) 2025 Exam. Find important definitions, questions, notes, meanings, examples, exercises, MCQs and online tests here.

Chapter doubts & questions of Recursion - Programming and Data Structures in English & Hindi are available as part of Computer Science Engineering (CSE) exam. Download more important topics, notes, lectures and mock test series for Computer Science Engineering (CSE) Exam by signing up for free.

Signup to see your scores go up within 7 days!

Study with 1000+ FREE Docs, Videos & Tests
10M+ students study on EduRev