P
Q. What will be the output of the following code
import java.util.LinkedHashSet; import java.util.Set; public class LinkedHashSetTest { public static void main (String args[]) { Set s=new LinkedHashSet(); s.add(“1”); s.add(1); s.add(3); s.add(2); System.out.println(s); } }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. What is the output of the following code?
Q. Which of these is a protocol for breaking and sending packets to an address across a network?
Q. Which of the following is an immediate subclass of the Panel class?
Q. Which of the following methods return the value as a double?
Q. Which of the following is incorrect statement about packages?
Discusssion
Login to discuss.