Sail E0 Webinar
Question


What is the output of this program?


import java.util.*;
class Output {
public static void main(String args[]) {
TreeSet t = new TreeSet();
t.add("3");
t.add("9");
t.add("1");
t.add("4");
t.add("8");
System.out.println(t);
}
}
Options:
A .  [1, 3, 5, 8, 9]
B .  [3, 4, 1, 8, 9]
C .  [9, 8, 4, 3, 1]
D .  [1, 3, 4, 8, 9]
Answer: Option D

TreeSet class uses set to store the values added by function add in ascending order 

using tree for storage
Output:
$ javac Output.java
$ java Output
[1, 3, 4, 8, 9]



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers