Question: Which of the following techniques can be used to optimize the Union operation in Disjoint Set Union?
Options:
Correct Answer: Path compression
Solution:
Path compression is a technique used to optimize the Union operation in Disjoint Set Union by flattening the structure of the tree whenever \'Find\' is called.