This document discusses various searching methods for arrays, including linear search, binary search, and table search. Linear search sequentially checks each element until the target is found. Binary search works on sorted data by eliminating half the remaining elements at each step. Table search searches arrays of strings by first comparing individual string characters, then using binary search on the sorted string table. The document provides pseudocode algorithms and examples for each search method.