
Asked in Wissen Technology
Write a program to return the length of the longest word from a string whose length is even.
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...
Top Java Developer Interview Questions Asked at Wissen Technology
Q. What is the purpose of introducing static and default methods in functional inte...read more
Q. Given a 2D matrix, how can you perform a spiral traversal to obtain a 1D array?
Q. What is a deadlock?
Interview Questions Asked to Java Developer at Other Companies
Top Skill-Based Questions for Wissen Technology Java Developer
Java Interview Questions and Answers
250 Questions
Data Structures Interview Questions and Answers
250 Questions
Web Development Interview Questions and Answers
250 Questions
Algorithms Interview Questions and Answers
250 Questions
Software Development Interview Questions and Answers
250 Questions
Spring Boot Interview Questions and Answers
50 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

