Candidates applying for Software Engineer roles take an average of 7 days to get hired, when considering 2 user submitted interviews for this role. To compare, the hiring process at Meta overall takes an average of 42 days.
Common stages of the interview process at Meta as a Software Engineer according to 2 Glassdoor interviews include:
Phone interview: 67%
Skills test: 33%
Here are the most commonly searched roles for interview reports -
Online Application, submitted the resume only. Contacted next day for a phone interview.
After the first interview was schedule for a second phone interview. Finally went for the onsite interview in Menlo Park where there was 3 interview in the same day.
Interview questions [1]
Question 1
Print a binary tree level per level.
1
2 3
4 5 6 7
Would print
1
23
4567
Facebook had come on campus.The first round was simple coding questions .The second round was a telephonic screening for 45 mins. The interviewer explained his job role and gave 5 mins in the end to ask questions
Interview questions [1]
Question 1
1--a
2--b
...
26--z
given a digit , return the count of the possible output
eg. '1313' --- 4
acac mac mm acm
'101' --1
ja
cannot discard any digit .
I applied online. The process took 3 days. I interviewed at Meta in Sep 2014
Interview
Applied online. Got an email from a recruiter. Easy,efficient and painless process. The recruiters are really quick and will let you know the smallest of details regarding the interview.
Had a technical phone screen with an engineer from a similar team. Had to code on collabedit. Was initially asked some OOP concepts,Data structure questions.
The coding question was easy and i solved it correctly albeit a few corrections here and there. The code ran in O(n) with no space so i thought i did good. Question was find if one string is one edit distance away from the other string. This is the same as minimum edit distance question but with a twist. In this case you just want to know if its one edit away or not. The interviewer asked me if there was anything i could improve in the code, at that moment i did not think there could be any improvement other than some validation checks/readability of code. After the call i realized there was a small 5 line solution to this involving recursion but alas.
Interview questions [1]
Question 1
Find if one string is "oneEditAway" from another string