Revature interview question

What is the difference between an Array and an Arraylist?

Interview Answer

Anonymous

26 Apr 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