In this strategy, if we try to insert an item (k,v) into a bucket A[i] that is already occupied, where i = h(k), then we try next at A[(i + 1) modN]. IfA[(i + 1) mod N] is occupied, then we try A[(i + 2) modN], and so on, until we find an empty bucket in A that can accept the new item