Senior Associate Software Engineer applicants have rated the interview process at Equinix with 3 out of 5 (where 5 is the highest level of difficulty) and assessed their interview experience as 100% positive. To compare, the company-average is 49.3% positive. This is according to Glassdoor user ratings.
Candidates applying for Senior Associate Software Engineer roles take an average of 14 days to get hired, when considering 1 user submitted interviews for this role. To compare, the hiring process at Equinix overall takes an average of 33 days.
Common stages of the interview process at Equinix as a Senior Associate Software Engineer according to 1 Glassdoor interviews include:
One on one interview: 100%
Here are the most commonly searched roles for interview reports -
I applied online. I interviewed at Equinix (Singapore) in Jun 2020
Interview
We go through 4 rounds of 1 hour interviews - two interviewers for each round and the final round is a culture fit round.
The technical rounds consists of one simple algorithm quesiton and rest are questions about the domain knowledge - in this case java.
Respectful and interesting interviewers.
I applied through a recruiter. The process took 2 weeks. I interviewed at Equinix (Sunnyvale, CA) in Jun 2019
Interview
2 Technical Rounds
Problem 1 : Given an input n stairs, return the possible permutations to reach nth stair.
Constraints: you can move at the most 1 step or two steps at a time.
input_1 : n = 0
output_1 : [[0]]
input_2 : n = 1
output_2 : [[0,1], [1]]
input_3 : n = 2
output_3 : [[0,1,2], [1,2], [0,2], [2]]
Design Question : Design an E-commerce website like Amazon/walmart.
Problem 2 : Design a stack and implement all the methods in the stack.
Problem 3 : Implement queue with stack.
Interview questions [1]
Question 1
Problem 1 : Given an input n stairs, return the possible permutations to reach nth stair.
Constraints: you can move at the most 1 step or two steps at a time.
input_1 : n = 0
output_1 : [[0]]
input_2 : n = 1
output_2 : [[0,1], [1]]
input_3 : n = 2
output_3 : [[0,1,2], [1,2], [0,2], [2]]
Design Question : Design an E-commerce website like Amazon/walmart.
Problem 2 : Design a stack and implement all the methods in the stack.
Problem 3 : Implement queue with stack.