Difference between array and arraylist.
Answers were Sorted based on User's Feedback
Answer / vinod agarwal
Array:array is the one which can save similar data typed
elements.
And the size is limited.
Arraylist:it is also a type of array in which we can extend
size
dynamically.
syntax:
ArrayList ar=new ArrayList();
where ArrayList is a class
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / brijendra kumar soni(xavient)
Array is the Coolection of similar type of object.the size
of array is fixed while Array list is the collection of
different data types and the size of array list is growable.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / sakshi jauhari
Arraylist is written as
ArrayList<String> arr= new ArrayList<String>();
whereas array is specified for a single data type object
only like..
int[] ar = new int[6];
Arraylist can be specified for any data type object that it
can store.
its range can also be resized which is not possible in
array.
| Is This Answer Correct ? | 2 Yes | 1 No |
How to check if a list is sorted in java?
Given a singly linked list, determine whether it contains a loop or not without using temporary space?
Should database connections be singleton?
Will the compiler creates a default constructor if I have a parameterized constructor in the class?
How do you sort in ascending order in java?
Why can't you declare a class as protected?
What is the immediate superclass of Menu?
State the difference between strings and arrays.
Difference between JVM and JRE?
Why is java called java?
How can we make a class singleton?
If an application has multiple classes in it, is it okay to have a main method in more than one class?