Home > Java Programming > Collections > Questions and Answers
Q: |
1. Object [] myObjects = { 2. new Integer(12), 3. new String("foo"), 4. new Integer(5), 5. new Boolean(true) 6. }; 7. Arrays.sort(myObjects); 8. for(int i=0; i 10 System.out.print(" "); 11. } What is the result? | ||||||||||||||
|
Comment on this Question | |
Name: | |
|