What will be the output of the following code ?<br /> <br /> enum Day {<br />    MONDAY,TUESDAY,WEDNESDAY,THURSDAY,FRIDAY,SATURDAY,SUNDAY<br /> }<br /> <br /> public class BuggyBread1{<br />    public static void main (String args[]) {<br />       Set mySet = new HashSet();<br />       mySet.add(Day.SATURDAY);<br />       mySet.add(Day.WEDNESDAY);<br />       mySet.add(Day.FRIDAY);<br />       mySet.add(Day.WEDNESDAY);<br />       for(Day d: mySet){<br />          System.out.println(d);<br />       }<br />    }<br /> }
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. What will be the output of the following code ?

enum Day {
   MONDAY,TUESDAY,WEDNESDAY,THURSDAY,FRIDAY,SATURDAY,SUNDAY
}

public class BuggyBread1{
   public static void main (String args[]) {
      Set mySet = new HashSet();
      mySet.add(Day.SATURDAY);
      mySet.add(Day.WEDNESDAY);
      mySet.add(Day.FRIDAY);
      mySet.add(Day.WEDNESDAY);
      for(Day d: mySet){
         System.out.println(d);
      }
   }
}
Ans. FRIDAY , SATURDAY and WEDNESDAY will be printed but the order cannot be determined.

Only one FRIDAY will be printed as Set doesn't allow duplicates. Order cannot be determined as HashSet doesn't maintain elements in a particular order. 

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

   Like         Discuss         Correct / Improve     java   code   coding   enum   set   hashset

Try 3 Question(s) Test


Related Questions

 Collections.sort can only be performed on ..

a. Set
b. List
c. Map
d. Any Collection implementation
 Difference beween HashSet and TreeSet ?
  What is the difference between List, Set and Map ?

or

What are the different Java Collections Interfaces ?
  What is comparator interface used for ?
  Why are Getter and Setter better than directly changing and retrieving fields ?

or

What is the significance of variable hiding in Java ?

or

Why it's preferred to keep variables private and allow their access through getter and setter methods ?
  If I try to add Enum constants to a TreeSet, What sorting order will it use ?
  In what order the elements of a HashSet are retrieved ?
  Which of the following doesn't extend Collection interface ?
  How to display and set the Class path in Unix ?
  Which are the sorted collections ?



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: