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
Can we declare register variable as global?
Can you access non static variable in static context?
What is the difference between inheritance and encapsulation?
What is java’s garbage collected heap?
Is java based on c?
What is boolean keyword in java?
Are private methods final?
When do I need to use reflection feature in java?
Is arraylist zero based?
What is lastindexof in java?
What is method reference?
Why should we use singleton pattern instead of static class?
What is java life cycle?
How many characters is 16 bytes?
What is hashing in java?