Pergunta de entrevista da empresa Oracle

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

Respostas da entrevista

Sigiloso

10 de mai. de 2020

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

Sigiloso

10 de mai. de 2020

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