What will be the output of the following program?
import java.util.*;
public class UsingTailSet {
public static void main(String[] args) {
TreeSet tree = new TreeSet();
tree.add("Roots");
tree.add("Stem");
tree.add("Branch");
tree.add("Leaves");
tree.add("fruits");
System.out.println(tree.tailSet("Branch"));
}
}