Feedonomics is now known as Commerce. Powered by Commerce..
Feedonomics Senior Full Stack Software Engineer interview questions
based on 1 rating - Updated Mar 26, 2021
Difficultinterview difficulty
Very positiveinterview experience
How others got an interview
100%
Applied online
Applied online
Interview search
1 interviews
Feedonomics interviews FAQs
Senior Full Stack Software Engineer applicants have rated the interview process at Feedonomics with 4 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 68.6% positive. This is according to Glassdoor user ratings.
Common stages of the interview process at Feedonomics as a Senior Full Stack Software Engineer according to 1 Glassdoor interviews include:
Presentation: 50%
Phone interview: 50%
Here are the most commonly searched roles for interview reports -
I applied online. I interviewed at Feedonomics in Mar 2021
Interview
hacker Rank test, and then live coding challenge.
Of course with initial screening too.
You should expect PHP test, one for getting data using file_get_contents, another Mysql test, mainly joins and group by, and then html list using js and css.
Interview questions [1]
Question 1
Guys most of the questions are above, here I'm gonna share the question I failed, as I promised the interviewer that I'm gonna solve it, I just needed more time.
The most difficult question is the following:
we have this array:
$input = [
'item/id' => 'my_id',
'item/title' => 'my_title',
'item/group1/val1' => 'my_val1',
'item/group1/val2' => 'my_val2',
'summary' => 'xyz',
'item/group1/val3' => 'my_val3',
];
We need to convert it to :
Array (
[item] => Array (
[id] => my_id
[title] => my_title
[group1] => Array (
[val1] => my_val1
[val2] => my_val2
[val3] => my_val3
)
)
[summary] => xyz
)
This is using PHP.