Come up with a formula to calculate the angle between the hour hand and the minute hand in a clock.
Software Developers Interview Questions
96,331 software developers interview questions shared by candidates
Write breadth-first search in a matrix
your given 2 ordered list A and list B. B has enough space to hold its existing numbers plus all the numbers in A. Add the numbers from A in B. Make sure B is ordered. Whats the fastest way to do this?
5 horses on a 5-lane track. You have 5 horses and you want to rank the top three. All you have available to you is a track and the ability to tell perfectly in which order the horses crossed the finish line. How many races are necessary in order to rank the top three horses?
How to would you find out whether a substring occurs in a given string?
In the coding round they asked....take a string in the combination of capital letters, small letters and spaces.after execution it should produce o/p such as capitals at 1st, then spaces, then small letters.eg:- if input is abAB ab.then output should be AB abab.
Runnable interface, Synchronization, ect
int fun(int a) { int i=0; if(a>99) i++; return a-12; return fun(fun(a)) } int main() { printf("%d", fun(69); printf("%d",i); }
Difference between == & === ?
In managerial Round write a method for finding substring which has specific given length
Viewing 341 - 350 interview questions