Multiple choice In a linked list each link contains a pointer to the next link an array of pointers points to the link no link contains data the links are stored in an array Reveal answer Fill a bubble to check yourself A Correct answer Explanation A linked list is a linear data structure where elements are not stored in contiguous memory locations. Each element (node) contains data and a pointer (or reference) to the next node in the sequence.