84.
What does the following piece of code do?
for (int i = 0; i < arr.length-1; i++)
{
    for (int j = i+1; j < arr.length; j++)
    {
        if( (arr[i].equals(arr[j])) && (i != j) )
        {
            System.out.println(arr[i]);
        }
    }
}

85.
In which of the cases uniform binary search fails compared to binary search?

88.
Which of the following searching algorithm is fastest when the input array is sorted and has uniformly distributed values?

90.
Exponential search has . . . . . . . .

Read More Section(Searching Algorithms)

Each Section contains maximum 100 MCQs question on Searching Algorithms. To get more questions visit other sections.