Write a Program that prints words longer than 5 characters in a String<br /> <br /> For example <br /> <br /> We are what we repeatedly do; excellence, then, is not an act but a habit<br /> <br /> should print <br /> <br /> repeatedly<br /> excellence
Javasearch.buggybread.com

Search Interview Questions


 More than 3000 questions in repository.
 There are more than 900 unanswered questions.
Click here and help us by providing the answer.
 Have a video suggestion.
Click Correct / Improve and please let us know.
Label / Company      Label / Company / Text

   



Interview Questions and Answers

 Q1. Write a Program that prints words longer than 5 characters in a String

For example

We are what we repeatedly do; excellence, then, is not an act but a habit

should print

repeatedly
excellence
Core Java
Ans. public class BuggyBread1 {
   public static void main(String args[]) {
      Map<String,Integer> wordLength = new HashMap();
      
      String str = "We are what we repeatedly do; excellence, then, is not an act but a habit";
      String longestWord = "";
      
      str = str.replaceAll(",","");
      str = str.replaceAll(";","");
      str = str.toLowerCase();
      
      for(String word: str.split(" ")){
            wordLength.put(word, word.length());
      }
      
      for(Map.Entry<String, Integer> entry:wordLength.entrySet()){
         if(entry.getValue().intValue() > 5){
            System.out.println(entry.getKey());
         }
      }
   }
}

 Help us improve. Please let us know the company, where you were asked this question :   

   Like         Discuss         Correct / Improve     


Related Questions

  Difference between == and .equals() ?
  Why is String immutable in Java ?
  Explain the scenerios to choose between String , StringBuilder and StringBuffer ?

or

What is the difference between String , StringBuilder and StringBuffer ?
  What are the difference between composition and inheritance in Java?
 Explain OOPs

or

Explain OOPs Principles

or

Explain OOPs Concepts

or

Explain OOPs features

or

Tell me something about OOPs
  What is a Lambda Expression ? What's its use ?
  Why Char array is preferred over String for storing password?
  What are different ways to create String Object? Explain.
  Does garbage collection guarantee that a program will not run out of memory?
  What is the difference between final, finally and finalize() ?



Help us and Others Improve. Please let us know the questions asked in any of your previous interview.

Any input from you will be highly appreciated and It will unlock the application for 10 more requests.

Company Name:
Questions Asked: