62.
Is there any difference in the speed of execution between linear serach(recursive) vs linear search(lterative)?

64.
Choose the correct while loop statement from the following that finds the range where are the element being search is present (x is the element being searched in an array arr of size n)?

while (i < n && arr[i] <= x)  
        i = i*2; 

while (i < n && arr[i] <= x)  
         i = i/2; 

while (arr[i] <= x)  
        i = i/2; 

while (i < n)  
        i = i*2; 

65.
Can linear search recursive algorithm and binary search recursive algorithm be performed on an unordered list?

67.
What are the updated values of high and low in the array if the element being searched is lower than the value at calculated index in interpolation search? (pos = current position)

Read More Section(Searching Algorithms)

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