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



if arraylist size is increased from initial size what is the size of arraylist...suppose initial i..

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

if arraylist size is increased from initial size what is the size of arraylist...suppose initial i..

Answer / reddy

(initial capacity*3/2)+1
(100*3/2)+1

Is This Answer Correct ?    28 Yes 4 No

if arraylist size is increased from initial size what is the size of arraylist...suppose initial i..

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

if arraylist size is increased from initial size what is the size of arraylist...suppose initial i..

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

if arraylist size is increased from initial size what is the size of arraylist...suppose initial i..

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

if arraylist size is increased from initial size what is the size of arraylist...suppose initial i..

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

if arraylist size is increased from initial size what is the size of arraylist...suppose initial i..

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

if arraylist size is increased from initial size what is the size of arraylist...suppose initial i..

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

if arraylist size is increased from initial size what is the size of arraylist...suppose initial i..

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

if arraylist size is increased from initial size what is the size of arraylist...suppose initial i..

Answer / sri

same 100 since the count starts from 0 onwards its obcious
tat u wud have 101 elements

Is This Answer Correct ?    7 Yes 35 No

Post New Answer

More Core Java Interview Questions

If you are reviewing the code of your team members, what points will you look at, assuming the performance of the application is not so great

2 Answers   KPIT,


In Inheritence concept, i have a static method in super class and i am inheriting that class to one sub class.in that case the static method is inherited to sub class or not????

12 Answers   Accenture,


how jvm allocates memory for stack?

1 Answers   HP, Ramco,


Is minecraft java edition free?

0 Answers  


What package is math in java?

0 Answers  






What is byte value?

0 Answers  


Difference between JVM and JRE?

3 Answers   Amdocs,


What is meant by class and object in java?

0 Answers  


What is the difference between hashset and treeset in java?

0 Answers  


What restrictions are placed on method overriding?

0 Answers  


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

0 Answers  


How to change the priority of thread or how to set priority of thread?

0 Answers  


Categories