Given a list of integers that fall within a known short but unknown range of values, how to find the median value?
Developer Advisor Interview Questions
710,975 developer advisor interview questions shared by candidates
Write a Square Root function for a computer without floating point calculations
Write a routine that does secret santa in O(N) time.
Given a very long string composed of numbers as characters, find the four character substring that has the largest multiple. For example, given the string "809723", the two char substring with the largest multiple is "97", having a multiple 9*7 = 63.
questions based on your test, problem solving approach, java multithreading, query optimization etc.
Given a string, return true if after jumbling/rearranging the characters of the string will it be a palindrome. and false if not. eg: given string "evlel", it can be rearranged to "level" and thus it is a palindrome, and return true. eg: 1234 cannot be rearranged to become a palindrome hence false.
Find the max k elements in an unsorted array.
Given two strings, find if they differ by exactly two letters.
Write a function to tell if three points are colinear.
Merge to sorted arrays into second array, both arrays has N elements, but second array size is N * 2. So you merge both arrays in second array in a sorted way.
Viewing 1501 - 1510 interview questions