Workbook 13.4
From the Java Bootcamp Resources
, launch starter.
Intermediate Operation
filter
: include students with a score higher than 80.
Terminal Operation
forEach
: print this message for each filtered student.
System.out.println("Congratulations " + student.getName() + " for achieving a score of " + student.getScore())
Expected Output
>>: Congratulations Alice for achieving a score of 85.6
>>: Congratulations Dave for achieving a score of 92.7
>>: Congratulations Gina for achieving a score of 91.4
>>: Congratulations Jasmine for achieving a score of 82.5
Associated Course: The Complete Java Development Bootcamp
Related Course: The Complete Spring Boot Development Bootcamp – Become a Java Web Developer
Feedback Summary
4.7
43 students
5
91%
4
2%
3
0%
2
0%
1
7%
Written Reviews
There are no written reviews yet.