Separate Chaining is a collision resolution technique used in hash tables. In separate chaining, when multiple keys map to the same index, they are stored in a linked list or separate data structure at that index, rather than being placed in the same slot.