The document provides examples of Big-Oh asymptotic analysis. It gives two examples analyzing algorithms, showing that a linear search has complexity O(n) as it may need to examine each of n elements to find a match, and that a binary search has complexity O(log n) as it can halve the number of elements considered each step.