At any moment while a program is running you can trace the sequence of active methods from the currently executing statement back to main()
That sequence is the method
invocation stack
Its called the call
stack in C - often in Java too (because its easier to say)
The call stack is dynamic, changing as the program runs (the program itself is static - fixed at compile time)
There will be a call stack question on the exam