if arraylist size is increased from initial size what is
the size of arraylist...suppose initial is 100 , if i add
101 element what is the size...
Answers were Sorted based on User's Feedback
Answer / ravindra reddy
The size of the arraylist will increase to 150 why because
in arraylist the elements are reach to initial size of the
array list then size will be increase to half of the
capacity
Is This Answer Correct ? | 38 Yes | 13 No |
Answer / siri
remember.. there are 2 things involved.. capacity and size..
capacity represents how many max elements the list can
accomodate in it, size represents how many elements are
present currently in the list..the capacity is automatically
increased by certain amount (10, 20, 30..) based on the
current size once the size is equal to capacity..
Is This Answer Correct ? | 9 Yes | 2 No |
Answer / srinu
Arraylist are growble nature.so present capacity of arraylist
100 then add an 101 element then that time current capacity
is formula
(101*3/2)+1=151
Is This Answer Correct ? | 10 Yes | 6 No |
Answer / rajnish
The Size of the arraylist will become 101 only once you call suppose al.size() but it will calculate it's capacity like below:
New Capacity = (current capacity*3/2)+1
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / saty
It is undocumented by sun/oracle. Also it varies from one
java cersion to another..... in Java 6==>
(100*3)/2+1
Is This Answer Correct ? | 0 Yes | 3 No |
Answer / satish
from the Java Source code of ensureCapacity() API,
int newCapacity = (oldCapacity * 3)/2 + 1;
So, (100 *3)/2 + 1 will be the answer.
Is This Answer Correct ? | 1 Yes | 4 No |
Answer / dhruba guha
if the initial size is = N
then it will expanded memory will be = N + N/2 +1
Is This Answer Correct ? | 1 Yes | 5 No |
Answer / anjani
when we create the arraylist, we have two factors
1- inital size of array list,
2 - load factor (default is .75).
load factor means size of the arraylist will be doubled if
we fill 75% of the size availabe.
i mean if intial size of arraylist is 100 then when we will
insert 75th element in the arraylist, its size will be doubled.
Is This Answer Correct ? | 13 Yes | 19 No |
What is files manifesting?
Can you call a method on a null object?
Can we create constructor in abstract class ?
If circular link of two objects, then will it be garbage collected ?
How many bytes is a string?
What happens when a thread cannot acquire a lock on an object in java programming?
Explain the usage of this with constructors?
What are the override methods in Object class?
2 Answers Tech Mahindra, Wipro,
When is the finalize() called? What is the purpose of finalization?
Is ++ operator thread-safe in java?
What is qms certification?
Which method cannot be overridden in java?