Learning Outcome
At the end of this lesson, you will be able to:
- understand and use Recursion
Silent Watching
Review
Lesson
- go over "Procedures & Functions", Chapter 4
- Computer Based Problem Solving
- read "Recursion"
Activity
Daily Assignment
- re-create the "Factorial" program, but do it recursively
- 5! is just 5 * 4!
- 4! is just 4 * 3!
- 3! is just 3 * 2!
- 2! is just 2 * 1!
- 1! is just 1
Object-Orient Analysis & Design
- read over and do Lesson 9
Extra
- work on weekly assignment