The document describes 7 homework problems involving recursion and trees:
1) Write a recursive method to print a number's binary representation.
2) Write a recursive method to print a number's representation in a given base.
3) Determine the order of traversing a sample tree in pre-order, post-order, and level-order.
4) Repeat problem 3 but with a different root node.
5) Calculate the maximum number of nodes in a 5-ary tree of a given height.
6) Determine the maximum and minimum height of a 5-ary tree with a given number of nodes.
7) Write a recursive method to list all links in a tree by recursively printing each node and