Print the odd numbers inbetween 1 to 10 and greater than 5 using streams
AnswerBot
7mo
Using Java streams to print odd numbers between 1 to 10 and greater than 5
Use IntStream.range() to generate numbers from 1 to 10
Filter the numbers using filter() to get odd numbers
Use filter() again t...read more
Anonymous
8mo
IntStream.rangeClosed(0,10).boxed().toList().stream().filter(i -> i%2!=0 && i >5).forEach(System.out::println);
Help your peers!
Add answer anonymously...
Top LTIMindtree Senior Software Engineer interview questions & answers
Popular interview questions of Senior Software Engineer
Top HR questions asked in LTIMindtree Senior Software Engineer
>
LTIMindtree Senior Software Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+
Reviews
4 L+
Interviews
4 Cr+
Salaries
1 Cr+
Users/Month
Contribute to help millions
Get AmbitionBox app