Given: (Exhibit) and: (Exhibit) Which code, when inserted on line 10, prints the number of unique localities By Singh | January 1, 2023 0 Comment Given:and:Which code, when inserted on line 10, prints the number of unique localities from the roster list? A. .map(Employee::getLocality).distinct().count(); B. .filter(Employee::getLocality).distinct().count(); C. .map(e -> e.getLocality()).collect(Collectors.toSet()).count(); D. map(e -> e.getLocality()).count(); Correct Answer: B