Stack
A memory region containing the local variables and parameters of currently executing functions.
Related concepts: CallReturnFunctionMethod
Closest Wikipedia entry: Call stack
Misconceptions about Stack9 documented Misconceptions
Check YourselfCallWithoutFrame — Java
A method invocation does not necessarily allocate a stack frame
CallerFrameContainsCalleeFormal — Java
Stack frame of caller includes variables for callee's formal parameters
FrameIsClassInstance — Java
A stack frame is the same as an instance of a class
NoLocalVariables — Java
There are no local variables
RecursiveActivationsShareFrame — Java
Recursive calls of a method share a stack frame
ReferenceIntoStack — Java
References can point into the stack
ReturnUnwindsMultipleFrames — Java
A return statement can unwind multiple call stack frames
StackTraceIsCallHistory — Java
A stack trace is the sequence of previously called methods
ReturnUnwindsMultipleFrames — Python
A return statement can unwind multiple call stack frames