Answer:
See explaination
Step-by-step explanation:
/ Streamer.java
import java.util.stream.Stream;
public class Streamer {
//required method
public static Stream<String> filterStrings(Stream<String> stream) {
//filtering out the strings from stream where length is less than or
//equal to 8, and then converting all strings in the resultant stream
//to lower case using map()
stream = stream.filter(e -> e.length() > 8).map(String::toLowerCase);
return stream;
}
}