Differentiate 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

Have you worked on bits programming? examples?What is bit? How many bits are there in the byte?

1 Answers  


why Java does not support multiple inheritances?

0 Answers   Aspire,


What is constructor and virtual function? Can we call a virtual function in a constructor?

0 Answers  


what is the use of clone method? why user cant overwrite in sub class without its proper defination.

2 Answers   TCS,


what is different between static and non static methods ,using example

2 Answers  






abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }

3 Answers  


How will you communicate between two applets?

0 Answers  


Explain about anonymous inner classes ?

0 Answers  


import java.io.*; class Demo { public static void main(String args[]) { File f=new File("1234.msg"); String arr[]=f.list(); System.out.println(arr.length); } }

3 Answers   IBM, Ramco,


What is final class?

0 Answers  


In java, what is the difference between method overloading and method overriding?

0 Answers  


which class is the wait() method defined in? : Java thread

0 Answers  


Categories