Answer:
Stack for all the active record instances:
The initial calling sequences is bigsub
-The bigsub calls funa.
- In static chain funa finishes their processes then it return back to bigsub
- In dynamic chain funa finishes their processes then it return back to bigsub
-The funa calls funb.
- In static chain funb finishes their processes then it return back to funa
- In dynamic chain funb finishes their processes then it return back to funa
-The funb calls funa.
- In static chain funa finishes their processes then it return back to bigsub
- In dynamic chain funa finishes their processes then it return back to funb
-The funa calls func.
- In static chain func finishes their processes then it return back to bigsub
- In dynamic chain func finishes their processes then it return back to funa
-The func calls fund.
- In static chain fund finishes their processes then it return back to func
- In dynamic chain fund finishes their processes then it return back to func
Step-by-step explanation:
See the stack diagram.