Solicité el puesto a través de un captador. El proceso duró 3 semanas. Acudí a una entrevista en Access Softek (Berkeley, CA)
Entrevista
I was approached online by a recruiter and asked if I want to try pass an interview process to be hired as a remote software developer (independent contractor). The process took about 3 weeks to complete. There were 1 introductory HR interview, offline programming test, and 3 technical interviews (programming and general topics). All interviews were remote via Skype. I enjoyed programming interviews a lot, these were one of the most interesting interviews I had in my career. The level of specialists conducting interviews was impressive. In the end I was offered a job, which I accepted.
Preguntas de entrevista [1]
Pregunta 1
We covered almost every topic related to programming.
You'll meet 3-4 persons, while processing multi-step interview. It usually consists of 4-6 steps. Starting the process from meeting the HR, followed by little initial test with limited time. Then Technical interview with 2-3 peoples. Followed by communication with your future chief and offer finally.
Preguntas de entrevista [1]
Pregunta 1
Problem 1. Find the Bugs (5 points each)
The following routines each have one bug. Correct each one.
a. This function is supposed to append string_tail to the end of string_head without using the strcat() function. It assumes that string_head has enough room to contain the result.
char* AppendString(char* string_head, char* string_tail)
{
int length;
length = strlen(string_tail);
strcpy(string_head + length, string_tail);
return string_head;
}
Solicité el puesto a través de la recomendación de un empleado. El proceso duró 3 semanas. Acudí a una entrevista en Access Softek en may 2014
Entrevista
There was an initial screening interview by the corporate recruiter which was followed by a phone technical interview. I have been web development for a long time and I found a couple of the questions on the technical skills test very challenging.
The hiring manager took a very long time to get back to me about the skills test and I never did get to actually speak to them about how I did.
Preguntas de entrevista [1]
Pregunta 1
What is the aim of the following code fragment? What are adv/disadv of this solution? Implement better fragment.
static int Foo( int a, int b, int c )
{
if ( 1 < c )
return Foo( b, b + a, c - 1 );
else
return a;
}