Loading practice questions
Best case of the exponential search will have time complexity of?
Correct Answer: A — O(1)
Explanation:
Best case of the exponential search will be when the first element of the array is the element that is being searched. In this case, only one comparison will be required. Thus it will have a time complexity of O(1).