What do you mean by Base case, Recursive case, Binding Time,
Run-Time Stack and Tail Recursion?

Answer Posted / khalith

Base case: A case in recursion, in which the answer is known when the termination for a recursive condition is to unwind back.

Recursive Case: A case which returns to the answer which is closer.

Run-time Stack: A run time stack used for saving the frame stack of a function when every recursion or every call occurs.

Tail Recursion: It is a situation where a single recursive call is consisted by a function, and it is the final statement to be executed. It can be replaced by iteration.

Is This Answer Correct ?    9 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is non linear structure?

663


Why is it called bubble sort?

671


What is inserting in data structure?

687


Why is hashset not ordered?

671


Why sorting algorithms are important?

701


What is the best sorting technique?

680


What is data algorithm?

750


Write an algorithm to find middle element in the linked list.

683


Is heap sort stable?

650


Which is faster hashmap or treemap?

649


List out the basic operations that can be performed on a stack?

624


What are the two types of data?

641


Name the areas in which you can apply data structures extensively?

683


What is immutablelist?

669


What is perfect binary tree?

626