Contents

A recursive function can be replaced with …….in C language.
a) for loop                            
b) while loop
c) do while loop   
d) All the above

d

A recursive function is faster than…loop.
a) for                                     
b) while
c) do while                            
d) None of these

d

Explanation: Yes. Recursion is slow. Variable are kept and remove on STACK memory multiple times.