Difference between array and arraylist.

Answer Posted / vk

Array is a collection of similar data types,ArrayList is not you can store any type of data types in AL.ArrayList will autometically increase 50% of the size which we allocated previously, but Array wasn't.

ArrayList al= new ArrayList();
al.add("a");
al.add(10);

both can be accepted in ArrayList.

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we declare register variable as global?

709


Can you access non static variable in static context?

752


What is the difference between inheritance and encapsulation?

831


What is java’s garbage collected heap?

704


Is java based on c?

729


What is boolean keyword in java?

843


Are private methods final?

643


When do I need to use reflection feature in java?

798


Is arraylist zero based?

745


What is lastindexof in java?

734


What is method reference?

698


Why should we use singleton pattern instead of static class?

679


What is java life cycle?

725


How many characters is 16 bytes?

731


What is hashing in java?

756