Question from the Java - Fundamentals test

Waiting for validation

Quel est le résultat affiché par le programme suivant :

HashMap<Integer, String> map = new HashMap<>();
map.put(1, "A");
map.put(2, "B");
map.put(1, "C");
System.out.println(map);

Author: koceilaStatus: Waiting for validationQuestion not yet passed
0
Community EvaluationsNo one has reviewed this question yet, be the first!