Envié una solicitud electrónica. El proceso duró 1 semana. Acudí a una entrevista en SendMe Mobile (San Francisco, CA) en feb 2012
Entrevista
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.
Preguntas de entrevista [1]
Pregunta 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();
}