What will this method return?
public _____ method()
{
// maps names to whether or not they have been validated
Map<String, boolean> validated = new HashMap<String, boolean>();
validated.put("Dillon", false);
validated.put("Roger", true);
return validated.keySet();
}
There are no hints for this question.