you have two eggs, and a 100 storey building, find out the highest floor to throw them from so that they wont break, and in minimum number of tries.
Programador Interview Questions
710,948 programador interview questions shared by candidates
You have a large data file, consisting of ten-digit numbers separated by new-line characters. Write a program in C to sort it, using at most 20MB of memory. Make it efficient.
int i=14; if (i=15) i++; How much is i?
You have 25 horses, and you want to know which are the top 3 fastest, but you don't have a stopwatch. You can race the horses, but the track is only big enough to fit 5 horses at a time. How do you find the first, second and third fastest horses using the least amount of races possible?
Is this valid/what would this do (C): int *p; p=0; p++; printf("%d",p);
whats is the difference between merge and join .
given 2 unsigned ints a and b, return 1 unsigned int = a/b, rounded to nearest int without float operation
Implement the functions for a stack and function getMinimum() all with O(1) complexity.
Print a binary search tree. Each level on a new line.
Viewing 1361 - 1370 interview questions