Revature Interview Question

What is the difference between an Array and an Arraylist?

Interview Answer

Anonymous

Apr 26, 2019

Arrays have a fixed length and can store both objects and primitives, while Arraylists can only store objects and have a variable length.

1