Problems 0 and 1 on the section handout today were all about writing out and reading in a tree (serializing and deserializing). Problem 0 asked you to take an existing tree and print it out into text form, and problem 1 asked you to read that output back in again using a Scanner, and reconstruct the tree.
Just as a reminder, here's the code on the solution sheet for problems 0 and 1:
// Problem 0
public void writeTree() {
this.writeTreeHelper(this.root);