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(e > e.getLocality()).count(); B. .filter(Employee::getLocality).distinct().count(); C. .map(Employee::getLocality).distinct().count(); D. .map(e > e.getLocality()).collect(Collectors.toSet()).count(); Correct Answer: B