Search Interview Questions | ![]() ![]() Click here and help us by providing the answer. ![]() Click Correct / Improve and please let us know. |
|
| ||||
Interview Questions and Answers | ||||
| ||||
Ans. public class MyClass { static boolean binarySearch(int [] c, int start, int end, int value) { while (start <= end) { int mid = (start end) / 2; if (c[mid] == value) { return true; } if (c[mid] > value) { end = mid - 1; } else { start = mid 1; } } return false; } public static void main(String args[]) { int [] a = new int[] {1,2,4,6}; int [] b = new int[] {3,9}; int [] c = new int[] {2,4,5,6,7,9,10,12,15}; for (int i = 0; i < a.length; i ) { for(int j = 0; j < b.length; j ) { int value = a[i] b[j]; boolean find = binarySearch(c, 0, c.length - 1, value); if (find) { System.out.print(value " "); } } } } } | ||||
![]() | ||||
![]() ![]() ![]() ![]() | ||||
![]() | ||||
![]() | ||||
![]() | ||||
![]() or What is the difference between String , StringBuilder and StringBuffer ? | ||||
![]() | ||||
![]() or Explain OOPs Principles or Explain OOPs Concepts or Explain OOPs features or Tell me something about OOPs | ||||
![]() | ||||
![]() | ||||
![]() | ||||
![]() | ||||
![]() | ||||