A

Admin • 828.03K Points
Coach

Q. What will be the output of given code

Code:
import java. util.Arrays;
import java. util.Comparator;
class Sorting implements Comparator
{
public int compare(Integer o1, Integer o2)
{
return o2. compareTo(o1);
}
}
public class abc {
public static void main (String…a)
{
Integer intArray[]= {2,3,1};
Arrays.sort(intArray, new Sorting());
for(int i: intArray)
{
System. out. print(i+””);
}
}
}
  • (A) Compile time exception
  • (B) 3 2 1
  • (C) 1 2 3
  • (D) 2 3 1
  • Correct Answer - Option(B)
  • Views: 9
  • Filed under category Java
  • Hashtags:

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.