Difference between array and arraylist.
Answer Posted / pooja
ARRAY:
array is a userdefined datatype in almost all languages.
array is able to store only one type of values.
syntax:array a1[10];in c
array a1=new array[10];in c++ &java
that means array can store fixed no of values,ofcourse we
can dynamically allocate memory in java but we can't extend
the size.
ARRAYLIST:
arraylist is not supported in c
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 ? | 25 Yes | 9 No |
Post New Answer View All Answers
What is string immutability?
What is the exact difference in between Unicast and Multicast object?
Why we used vector class?
Why is java not 100% pure oops?
What happens if I remove static from main method?
Is linked list a linear or non-linear data structure?
What is string and its types?
Give a brief description of java socket programming?
What is vector?
How will you reverse a singly-link list?
What is meant by call by reference?
Is finalize() similar to a destructor?
Which class represents the socket that both the client and server use to communicate with each other?
Can a constructor be made final?
What is the use of beaninfo?