The programming team knows they need to create a program that will use a linear data structure to complete large amounts of data manipulation very quickly. Which data structure is most appropriate?(1 point)

Responses

linked list
linked list

maps
maps

graphs
graphs

array list

1 answer

For quick data manipulation in a linear data structure, an array list is the most appropriate choice.

Array lists provide efficient access to elements due to their underlying array structure, allowing for quick retrieval and iteration. While linked lists offer efficient insertions and deletions, they do not provide the same level of performance for random access, making array lists more suitable for scenarios where large amounts of data need to be manipulated quickly.

Thus, the best choice is array list.