Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Howmany number of objects we can store in an ArrayList. Is
there any limit?

Answers were Sorted based on User's Feedback



Howmany number of objects we can store in an ArrayList. Is there any limit?..

Answer / sakthivel(gceb)(n.p)pollachi

no limit

Is This Answer Correct ?    7 Yes 0 No

Howmany number of objects we can store in an ArrayList. Is there any limit?..

Answer / rajender

there is no restriction to store object in arraylist.it's
default size is 10.wenever it's reaches the maximum size
it's increase size(current capacity*3/2+1).

Is This Answer Correct ?    7 Yes 1 No

Howmany number of objects we can store in an ArrayList. Is there any limit?..

Answer / abdul

Array list size will increase dynamically.By default we can
store 16 objects.If number of objects increases the
arraylist size increase dynamically as below.
(2*Prevous size+2)
For ex: (2*16+2)=34 next time
(2*34+2)= 70

Is This Answer Correct ?    6 Yes 2 No

Howmany number of objects we can store in an ArrayList. Is there any limit?..

Answer / phanindra

ArrayList is resizeable in nature. by default it's size is
10. whenever it reaches the maximum a new ArrayList object
will be created with capacity of (Initialcapacity*3/2+1)
so there is no Limit we can store any number of objects in
an ArrayList.

Is This Answer Correct ?    1 Yes 0 No

Howmany number of objects we can store in an ArrayList. Is there any limit?..

Answer / rahulmishra642

It depends on list implementation.Since ArrayList is backed by an arrays so its size is limited to Integer.MAX_VALUE
and it can't hold more than interger.MAX_VALUE.

Is This Answer Correct ?    0 Yes 0 No

Howmany number of objects we can store in an ArrayList. Is there any limit?..

Answer / sri

the size we specify is the limit

Is This Answer Correct ?    3 Yes 10 No

Howmany number of objects we can store in an ArrayList. Is there any limit?..

Answer / chandrashekhar

The size will be as equal to int size.

Is This Answer Correct ?    0 Yes 9 No

Post New Answer

More Core Java Interview Questions

What is thread life cycle?

0 Answers  


Explain the role played by Java Virtual Machine in Java Programming?

1 Answers  


Why string is not a wrapper class?

0 Answers  


What are the 5 types of research methods?

0 Answers  


Can a method inside a interface be declared as final?

0 Answers  


What is the java reflection api? Why it’s so important to have?

0 Answers  


How many bits are used to represent unicode, ascii, utf-16, and utf-8 characters?

0 Answers  


Is java call by value?

0 Answers  


What is method overloading and method overriding?

0 Answers  


When is the finalize() called? What is the purpose of finalization?

0 Answers  


explain multi-threading in java?

0 Answers  


Is it possible to compare various strings with the help of == operator?

0 Answers  


Categories