in JAVA by
Which of the following is a data structure in Java that stores elements in a resizable array?

a) ArrayList

b) LinkedList

c) ArrayDeque

d) PriorityQueue

1 Answer

0 votes
by
Answer: a) ArrayList

Explanation: The ArrayList class in Java is a data structure that stores elements in a resizable array.
...