Multiple choice

In what kind of storage structure for strings, can one easily insert, delete, concatenate and rearrange sub-strings?

  1. Fixed length storage structure

  2. Variable length storage with fixed maximum

  3. Linked list storage

  4. Array type storage

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Linked lists are dynamic structures that allow for efficient insertion and deletion by simply updating pointers. Unlike arrays, they do not require shifting elements, making them ideal for frequent modifications.