Given: (Exhibit) and: (Exhibit) Which code, when inserted on line 10, prints the number of unique localities By Singh | January 7, 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()).collect(Collectors.toSet()).count(); B. map(e > e.getLocality()).count(); C. .map(Employee::getLocality).distinct().count(); D. .filter(Employee::getLocality).distinct().count(); Correct Answer: D