edited by
1,153 views

1 Answer

Best answer
7 votes
7 votes

Answer would be A) Divide and Conquer Techniques

Because, each time we compare given value to the root node value and according that we will reject one side of tree. This is nothing but the divide and conquer techniques. 

selected by
Answer:

Related questions

0 votes
0 votes
2 answers
1
dhruba asked Jun 5, 2023
1,165 views
Binary search is performed on a sorted array of n elements. The search key is not in the array and falls between the elements at positions m and m+1 (where 1 ≤ m < n). ...
0 votes
0 votes
1 answer
3
Sabir Khan asked Aug 8, 2018
1,093 views
The minimum number of comparisons required to determine if an integer appears more than n/2 times in a sorted array of n integers is(A) (n)(B) (logn)(C) (log*n)(D) (1)
3 votes
3 votes
1 answer
4
iarnav asked Mar 13, 2018
2,014 views
The average successful search time taken by binary search on a sorted array of 5 CONSECUTIVE integers starting with 1?My Answer is - 2.2Kindly tell me is it correct or no...