What is the vector class in java programming?


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

Post New Answer

More Core Java Interview Questions

How to deprecate a method? Show it with proper example. Plz give the answer of this.Thanx in advance. mail me: tanzeem.akhtar@gmail.com

2 Answers  


When to use runnable interface vs thread class in java?

0 Answers  


class A { private int i; } class B extends A { private int i; } if I create an object of B class what will be the memory of that object.

2 Answers   Yamaha,


What is the use of jtable?

0 Answers  


What is the basic functionality of DataOutput interface in java?

2 Answers   TCS,






can we create instance for interface in java?

4 Answers  


What is method in research paper?

0 Answers  


How to perform bubble sort in java?

0 Answers  


What does singleton mean in java?

0 Answers  


Differentiate between postfix and prefix operators in java.

0 Answers   HCL,


Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }

3 Answers  


What does int [] mean in java?

0 Answers  


Categories