in DS edited by
794 views
0 votes
0 votes

Which one of the following is a physical data structure ?

  1. Array
  2. Linked lists
  3. Stacks
  4. Tables
in DS edited by
794 views

1 Answer

2 votes
2 votes
Linked List, Stack, and Tables are Abstract Data Type (ADT). They can can be accessed through some well-defined operations such as PUSH and POP in the case of Stack.

Whereas an array is a primitive data type that we can access and modified with low-level code such as memory offset or index. Hence array is a physical data structure.