Le processus a pris 1 jour. J'ai passé un entretien chez SandForce (Fremont, CA) en juil. 2011
Entretien
I'm a new college graduate. They asked me a few questions about my background and resume. Next, told me about their products and where the company is going.
There was a technical coding quiz on a shared Google Doc.
int func(int y) {
int result=0;
while(y) {
y &= y - 1;
result++;
}
return result;
}
-- what does this function do?
--what's another way to write this?
Questions d'entretien [1]
Question 1
int func(int y) {
int result=0;
while(y) {
y &= y - 1;
result++;
}
return result;
}
-- what does this function do?
--what's another way to write this?