InterviewSolution
Saved Bookmarks
| 1. |
What are Java 8 streams? |
|
Answer» A stream is an ABSTRACTION to express data processing queries in a declarative way. A Stream, which represents a sequence of data objects & series of operations on that data is a data pipeline that is not related to Java I/O Streams does not hold any data permanently. |
|