I have found the answer to this question at
http://java4all.info/corejava/interview-questions/java-interview-questions.html# q4
Thanks
User Profile
Collapse
-
Site having good java Interview Questions?
I have found one site with good java interview questions.
Can you guys tell more good links? -
What will be the output of following java code snippet?
public class Test {
public static void main(String[] args) {
HashSet s = new HashSet();
for(short i = 0; i<100;i++){
s.add(i);
s.remove(i-1);
}
System.out.prin tln(s.size());
}
}
...
No activity results to display
Show More
Leave a comment: