Home / Programming MCQs / JAVA MCQs / Question

T

Tina Singh • 10.59K Points
Tutor II

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

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.