Write a program to return the length of the longest word from a string whose length is even.

AnswerBot
1y
This program returns the length of the longest word from a string whose length is even.
Split the string into an array of words using a space as the delimiter.
Initialize a variable to store the length ...read more
Spacester
2y
String longestWord = Arrays.stream(sentence.split(" ")) // creates the stream with words .filter(s -> s.length() % 2 == 0) // filters only the even length strings .max(Comparator.comparingInt(String::...read more
Savinay Nandkumar Patil
2y
public int findLagrestEvenWord(String input){
return Arrays.stream(input.split("\\s+")).filter(s-> s.length()%2 ==0).max(String::compareTo).get().length();
}
AKSHAY POTDAR
2y
public class LongestEvenWord {
public static int getLongestEvenWordLength(String input) {
int longestEvenWordLength = 0;
String[] words = input.split("\\s+");
for (String word : words) {
if (word.len...read more
Add answer anonymously...
Wissen Technology Java Developer interview questions & answers
A Java Developer was asked 4d agoQ. What are the features introduced in Java 8?
A Java Developer was asked 2w agoQ. What is a deadlock?
A Java Developer was asked 2w agoQ. Write an SQL query to find the second highest salary.
Popular interview questions of Java Developer
A Java Developer was asked 3d agoQ1. What are the features introduced in Java 8?
A Java Developer was asked 3d agoQ2. What is the purpose of introducing static and default methods in functional inte...read more
A Java Developer was asked 2w agoQ3. What is a deadlock?
>
Wissen Technology Java Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

