-
Alternativa correta: D.
Um hashmap não permite chaves duplicadas. Valores duplicados são admitidos.
-
Map<Chave, Valor>
lembrando que MAP não estende de Collection
Ele não pode ter chave duplicada, mas valores sim!
belo peguinha
-
A HashMap stores items in "key/value" pairs, and you can access them by an index of another type (e.g. a String).
One object is used as a key (index) to another object (value). It can store different types: String keys and Integer values, or the same type, like: String keys and String values
https://www.w3schools.com/java/java_hashmap.asp
-
Questão completamente errada. Como HashMap "não permite valores duplicados"? Claro que permite.
O gabarito deveria ser a C. Essa questão foi feita por quem não entende de Java.
"A HashSet is a collection of items where every item is unique"
https://www.w3schools.com/java/java_hashset.asp