Quel est le résultat qui sera affiché à l’exécution de ce
code ? Set set = new ...
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Quel est le résultat qui sera affiché à l’exécution de ce
code ?
Set set = new HashSet();set.add("Bernadine");set.add("Elizabeth");set.add("Gene");set.add("Elizabeth");set.add("Clara");SortedSet sortedset = new TreeSet(set); System.out.println(sortedSet);