Big-Oh Notation Tells “upper bound” or “worst case” of a function or an algorithm Means “no longer than” Example O(1) tells that this function takes constant time to run O(n) linear time O(n2) quadratic time Algorithm of O(n) is faster than of O(n2)