0 votes
in JAVA by

Which of the following is a data structure in Java that stores elements in a fixed-size array?

a) ArrayList

b) LinkedList

c) ArrayDeque

d) PriorityQueue

1 Answer

0 votes
by

Answer: c) ArrayDeque

Explanation: The ArrayDeque class in Java is a data structure that stores elements in a fixed-size array.

...