Oracle Interview Question

String reversal program Types of Testing Requirement to test mapping Severity priority Types of JDBC drivers palindrome algorithm sorting and searching algorithms

Interview Answers

Anonymous

May 10, 2020

//Searching Algorithms //Linear search public static int linearSearch(int[] a,int target) { for(int i=0;i

Anonymous

May 10, 2020

//Binary search public static int binarySearch(int[] a,int k) { int start=0; int end=a.length; while(start