InterviewSolution
Saved Bookmarks
| 1. |
How Will You Get The Highest Number Present In A List Using Java 8? |
|
Answer» Following code will print the highest number PRESENT in a LIST. List numbers = Arrays.asList(3, 2, 2, 3, 7, 3, 5); Following code will print the highest number present in a list. List numbers = Arrays.asList(3, 2, 2, 3, 7, 3, 5); |
|