Nested recursive method calls stack based trace

Recursive method tracing video on Google Drive in case YouTube breaks (again)

2009 AP CS A Exam Multiple Choice #39 Solution

2009 AP CS A Exam Multiple Choice #39 Solution
This problem can be easily solved using a stack. My explanation of Tracing recursive methods explains the technique. Also see my complete 2009 AP CS A Multiple Choice solutions. Stack based trace of 2009 AP CS A Multiple Choice #39 2009 AP CS A Multiple Choice #39 (as PDF)

2009 AP CS A Exam Multiple Choice #13 Solution

2009 AP CS A Exam Multiple Choice #13 Solution
This problem can be easily solved using a stack. My explanation of Tracing recursive methods explains the technique. Also see my complete 2009 AP CS A Multiple Choice solutions. Stack based trace of 2009 AP CS A Multiple Choice #13 2009 AP CS A Multiple Choice #13 (as PDF)

2009 AP CS A Exam Multiple Choice #40 Solution

This problem can be easily solved using a stack. My explanation of Tracing recursive methods explains the technique. Also see my complete 2009 AP CS A Multiple Choice solutions. Stack based trace of 2009 AP CS A Multiple Choice #40 2009 AP CS A Multiple Choice #40 Solution (as PDF)

2004 AP CS A Exam Multiple Choice #26 Solution

This problem can be easily solved using a stack. My explanation of Tracing recursive methods explains the technique. Also see my complete 2004 AP CS A Multiple Choice solutions. Stack based trace of 2004 AP CS A Multiple Choice #26 2004 AP CS A Multiple Choice #26 Solution (as PDF)

Trace recursive methods

Trace recursive methods
Java uses a stack to keep track of the sequence of method calls within a program. This approach can be used to trace recursive methods by hand. (The technique actually works for any sequence of method calls though it is usually only worthwhile for recursive methods.) Stack based recursive method tracing technique Place the first ...

AP Computer Science Resources

AP Computer Science Resources
Links to resources on collegeboard.org: Course Description Exam Quick Reference GridWorld Case Study Student Manual Support materials for the GridWorld Case Study Software and References for AP Computer Science Eclipse Standard and the latest version of the Java Development Kit (JDK not JRE) are recommended JDK Download Eclipse Download Java 7 API AP Computer Science ...