1) The document describes uninformed search algorithms, including breadth-first search and depth-first search.
2) Breadth-first search explores all neighbors of the initial node before moving to the next level, finding the shortest path.
3) Depth-first search explores deep paths first, expanding the deepest node at each step and implementing the fringe as a stack.