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
Answer: c) ArrayDeque
Explanation: The ArrayDeque class in Java is a data structure that stores elements in a fixed-size array.