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 |
What is the difference between class & object?
What is the program development process?
how to create multithreaded program? Explain different ways of using thread? When a thread is created and started, what is its initial state? : Java thread
Can you add null to a list java?
What are different type of exceptions in java?
How to provide security in java
0 Answers Infosys, TCS, Tech Mahindra,
Why are parameters used in functions?
what is the Use of throws exception?
What is a byte array?
What are disadvantages of java?
What is the main purpose of java?
What is the difference between comparison done by equals method and == operator?