Discussion :: Functions
- The recursive functions are executed in a ...........
A.
Parallel order |
B.
First In First Out order |
C.
Last In First Out order |
D.
Iterative order |
E.
Random order |
Answer : Option C
Explanation :
Because for each function call an entry is created in stack frame( known as Active Record Instance), and are executed in LIFO manner.
Be The First To Comment