List - Group 4
List - Group 4
DATA
STRUCTURE
Group 4
List
• Is also known as a sequence.
4. In the context of Lists, what does the ‘Add’ or ‘Insert’ operation do?
A) It changes the value of an already existing element.
B) It removes an element from the list.
C) It adds a new item to the list, regardless of the data type.
D) It finds an element in the list.
5. Which operation modifies the existing value in a
List?
A) Add
B) Replace or Reassign
C) Delete
D) Search
6. What happens in the ‘Delete’ operation of a List?
A) A new element is added to the list.
B) An existing element is modified.
C) An element is removed from the list.
D) A search is performed for a specific element.
9. Which data structure allows the addition of elements without needing to specify a
fixed size at initialization?
A) Array C) Stack
B) List D) Queue