Login
Remember
Register
Ask a Question
Which of the following is a data structure in Java that stores elements in a resizable array?
0
votes
asked
May 4, 2024
in
JAVA
by
rahuljain1
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
resizable
array
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 4, 2024
by
rahuljain1
Answer: a) ArrayList
Explanation: The ArrayList class in Java is a data structure that stores elements in a resizable array.
...