Linear Probing is an Open Addressing technique. When a collision occurs, the algorithm "probes" the very next available slot in the array until an empty one or the target key is found.
If the target slot is occupied by a different key, we increment the index (circularly) and check again.