Multiple choice

In a linked list

  1. each link contains a pointer to the next link

  2. an array of pointers points to the link

  3. no link contains data

  4. 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.