61. What is the time complexity of Fibonacci Search?
62. Is there any difference in the speed of execution between linear serach(recursive) vs linear search(lterative)?
63. What is the average case time complexity of binary search using recursion?
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)?
65. Can linear search recursive algorithm and binary search recursive algorithm be performed on an unordered list?
66. What is the auxiliary space complexity of Z algorithm for pattern searching (m = length of text, n = length of pattern)?
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)
68. What is the worst case for linear search?
69. Interpolation search is an in place algorithm.
70. What is the time complexity of Z algorithm for pattern searching (m = length of text, n = length of pattern)?
Read More Section(Searching Algorithms)
Each Section contains maximum 100 MCQs question on Searching Algorithms. To get more questions visit other sections.