What is the answer?

import java.util.Arrays;
import java.util.Comparator;
public static void main(String args[])
{
    String [] ar= {"c", "d", "b", "a", "e"};
    InnerClass in=new InnerClass();
    Arrays.parallelSort(ar, in);
    for(String str : ar)
            System.out.println(str +"");
    System.out.println(Arrays.binarySearch(ar, "b"));
}
static class InnerClass implements Comparator<String>
    {
        public int compare(String s1, String s2)
        {
        return s2.compareTo(s1);
    }
    }
}

what is the question?


I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

1 Like

I need answer for this question.

What do you think that the answer is and why?

1 Like

I’m not sure because of binarySearch. In this case they searching for “b” and search starts from the middle where is “b” already.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.