Java_Streams_Coding_Questions_Sections
Java_Streams_Coding_Questions_Sections
```java
Map<String, Long> countByGender = employeeList.stream()
.collect(Collectors.groupingBy(Employee::getGender, Collectors.counting()));
System.out.println("Count by Gender: " + countByGender);
```