What is meant by vector class, dictionary class, hash table class, and property class?


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

Post New Answer

More Core Java Interview Questions

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 a za z0 9 mean?

0 Answers  


What is Overriding and how can it be used?

7 Answers   Consagous, Wipro,


10. class Nav{ 11. public enum Direction { NORTH, SOUTH, EAST, WEST } 12. } 13. public class Sprite{ 14. // insert code here 15. } Which code, inserted at line 14, allows the Sprite class to compile? a)Direction d = NORTH; b)Nav.Direction d = NORTH; c)Direction d = Direction.NORTH; d)Nav.Direction d = Nav.Direction.NORTH;

2 Answers  


Have you ever used hashtable and dictionary?

0 Answers  






Can we store variables in local blocks?

0 Answers   Global Logic,


What is a flag and how does it work?

0 Answers  


What is mean by collections in java?

0 Answers  


Why packages are used?

0 Answers  


What is the difference between and ?

0 Answers  


What is Co-Variant return type in method overriding?

1 Answers   RBS,


What is java used for on a computer?

0 Answers  


Categories