In computer science, "linked" often refers to the concept of linked data structures, such as linked lists, where elements are connected or "linked" to each other using pointers or references. Each element in a linked list contains a data value and a pointer to the next element, creating a chain-like structure. Linked data structures are dynamic, meaning they can grow or shrink at runtime, and they allow for efficient insertion and deletion of elements.