I applied through a recruiter. The process took 1 week. I interviewed at LinkedIn in Apr 2012
Interview
A company recruiter had contacted me to check out my interests and asked for update resume. After hearing back they want to schedule a phone interview, there were three different people involved in the scheduling process that I felt a bit chaotic.
The phone interview requires computer access that they will ask you to code through an online collaboration tool.
As for onsite, in addition to coding, data structure, and algo stuff, they will also evaluate your communication skill (i.e. pretend I am a new hire, how do you ramp me up)
Interview questions [1]
Question 1
How u would build a site providing url shortening service.
The process took 1 day. I interviewed at LinkedIn in Apr 2012
Interview
HR does the phone screen , then the phone interview with test
Interview questions [2]
Question 1
public interface TwoSum {
/**
* Stores @param input in an internal data structure.
*/
public void store(int input);
/**
* Returns true if there is any pair of numbers in the internal data structure which
* have sum @param test, and false otherwise.
* For example, if the numbers 1, -2, 3, and 6 had been stored,
* the method should return true for 4, -1, and 9, but false for 10, 5, and 0
*/
public boolean test(int test);
}