LAMBDA EXPRESSION: Lambda expression is the most advanced features of java and it introduced in java 8.It basically instance of the functional interface(which interface contain only one abstract method).In lambda expression,there is only abstract functions are implemented.functional interfaces are implement only one abstract method but it can contain any number of default and static method. Runnable and Comparable are the example of functional interface. STREAM API: A stream is the sequence of processed data source which supports various operations such as filter, map, reduce, find, match etc. In-stream the aggregate operations and the bulk operations processing convenient and fast. Before stream API, for a simple operation like comparing with a string with the element of a string array...