What methods are called, When we navigate from one applet
to another applet?
suppose in a class there is a code like this: { Set hs=new Hashset(); hs.add(new Emp("kathy",1000)); hs.add(new Emp("kathy",2000)); } how can u avoid the above code in your class as set won't allow duplicate objects?
Does substring create a new object?
What is a vararg?
What is native code?
Program to find greatest prime number in n numbers?
Which package is imported by default?
List methods available in Java Queue interface
What is a boolean in java?
What is the generic function?
what is a package?
What is the super void?
is this possible to create an array of 0 length? if so how? if not so why? coz we have an array in main() likw this "static void main(String [] s) then what it signifies?