Real life application of link list

what are the real life application of link list???
some useful application that we should answer in the interview if asked

hey @Adhyayan
web-browsers, where it creates a linked list of web-pages visited, so that when you check history (traversal of a list) or press back button, the previous node’s data is fetched.
also Queue implement using LinkedList