What is the difference between array list and vector in java?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

How can we find size of the object ?

5 Answers   CTS, RazorSight,


Differentiate jar and war files?

0 Answers  


What will be the output of the program? public class Test { public static void main(String args[]) { ArrayList<String> list = new ArrayList<String>(); list.add("2"); list.add("3"); list.add("4"); list.add("5"); System.out.println("size :"+list.size()); for(int i=0;i<list.size();i++) { list.remove(i); } System.out.println("size after:"+list.size()); } }

5 Answers   Rolta,


Where is const variable stored?

0 Answers  


Is 0 true or false in java?

0 Answers  






What is array length?

0 Answers  


What is a dynamic array java?

0 Answers  


Describe the various concepts related to object oriented programming (oop).

0 Answers  


Why java is call by value?

0 Answers  


What is difference between jdk,jre and jvm?

0 Answers  


How will you serialize a singleton class without violating singleton pattern?

0 Answers  


difference between jsp and java script?

3 Answers  


Categories