I applied online. The process took 1 week. I interviewed at SendMe Mobile (San Francisco, CA) in Feb 2012
Interview
Instead of a phone interview, they send me a java project for me to complete. A few days after the completion of the project, I was invited to an onsite interview.
Interview questions [1]
Question 1
rewrite the get() method so it does not use an if statement.
abstract class <T>
{
private bool computed;
private T value;
abstract T get()
{
if (!computed)
{
value = computed();
computed = true;
}
return value;
}
abstract public T computed();
}