J'ai postulé en ligne. Le processus a pris 1 semaine. J'ai passé un entretien chez SendMe Mobile (San Francisco, CA) en févr. 2012
Entretien
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.
Questions d'entretien [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();
}