How do we find the level of recursion from a recursive method.
ie. How do we know the invocation level for a rwcursive method.
if it is invoked first, the level is one, when it is invoked recursively for second time
from within itself, the recursion level is 2 and so on.