InterviewSolution
Saved Bookmarks
| 1. |
What is sequential and parallel stream in Java 8? |
|
Answer» Parallel streams divide the provided venture into many and run them in unique threads, MAKING use of a couple of cores of the computer. On the other hand, sequential streams WORK just like for-loop the use of a single core. The DUTIES supplied to the streams are generally the ITERATIVE operations PERFORMED on the factors of a series or array or from different dynamic sources. Parallel execution of streams run more than one iterations concurrently in extraordinary accessible cores. |
|