Which of the following data structures stores the same kind of data in a…
2019
Which of the following data structures stores the same kind of data in a linear order, but not necessarily in contiguous memory locations?
- A.
Linked List
- B.
Tree
- C.
Array
- D.
Graph
Attempted by 1107 students.
Show answer & explanation
Correct answer: A
A linked list stores elements in a linear order using pointers, and its elements are not stored in contiguous memory locations.