What is Pseudocode?
is a high-level description of the problem you’re trying to solve, in code. It’s written like code, but it’s meant to be closer to human speech.
What is Recursion?
Recursion is where the function calls itself
How many parts in recursion?
Two parts, base case and recursion case
What is stack?
It’s a simple data structure, have two action: push, and pop
The stack, used to save functions calls, that’s called the call stack.
Uses last in first out technique