Software Engineer applicants have rated the interview process at Access Softek with 3.3 out of 5 (where 5 is the highest level of difficulty) and assessed their interview experience as 67% positive. To compare, the company-average is 72.7% positive. This is according to Glassdoor user ratings.
Candidates applying for Software Engineer roles take an average of 21 days to get hired, when considering 3 user submitted interviews for this role. To compare, the hiring process at Access Softek overall takes an average of 15 days.
Common stages of the interview process at Access Softek as a Software Engineer according to 3 Glassdoor interviews include:
Phone interview: 50%
Skills test: 50%
Here are the most commonly searched roles for interview reports -
I applied through a recruiter. The process took 3 weeks. I interviewed at Access Softek (Berkeley, CA)
Interview
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.
Interview questions [1]
Question 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.
Interview questions [1]
Question 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;
}
I applied through an employee referral. The process took 3 weeks. I interviewed at Access Softek in May 2014
Interview
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.
Interview questions [1]
Question 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;
}