difference between ArrayList and array ?
Javasearch.buggybread.com

Search Interview Questions


 More than 3000 questions in repository.
 There are more than 900 unanswered questions.
Click here and help us by providing the answer.
 Have a video suggestion.
Click Correct / Improve and please let us know.
Label / Company      Label / Company / Text

   



Interview Questions and Answers

 Q1. difference between ArrayList and array ?Core Java
Ans. ArrayList is a variable length collection class whereas arrays are fixed length primitive structure.

We can use generics with arraylist but not with arrays.

We can store primitive data types within arrays but can't with ArrayList. In ArrayList that needs to be converted to Wrapper objects.


 Help us improve. Please let us know the company, where you were asked this question :   

   Like         Discuss         Correct / Improve     arraylist  arrays  collection classes  collections      basic        frequent


Related Questions

 If arrays cannot be resized , Why is this code valid

String[] strArray = new String[2];
strArray = new String[5];
  What are the disadvantages of using arrays ?
  What are the Disadvantages of using Collection Classes over Arrays ?
  Advantage of Collection classes over Arrays ?
 Difference between Arrays and ArrayList ?
 Can we declare an array without assigning the size of an array?
 Why doesn't this code give compile time error when we are clearly trying to add an integer element to an array of Strings

Object[] strArray = new String[2];
strArray[0] = 5;
  What is the advantage of using arrays over variables ?
  What is the difference between int[] x; and int x[]; ?
 Write a Program to merge two sorted arrays ?



Help us and Others Improve. Please let us know the questions asked in any of your previous interview.

Any input from you will be highly appreciated and It will unlock the application for 10 more requests.

Company Name:
Questions Asked: