LinkedHashSet maintains insertion order. Frame the concept in practical terms so you can explain it during interview discussion.
LinkedHashSet extends HashSet with a linked list that keeps track of the order in which elements are inserted. This is useful when you need a set that maintains the order of elements as they were added, such as keeping track of the order of user actions in an application.