In 3-5 sentences, describe one disadvantage each for list, array, and queue data structures.(4 points)

One disadvantage of a list data structure is that accessing elements in the middle of the list can be slower compared to accessing elements at the beginning or end. For an array data structure, its size is fixed upon creation, so it may be inefficient if the number of elements frequently changes. A queue data structure has a limited functionality, as it only allows operations on the front and rear of the queue, and does not support random access to elements.