I applied online. The process took 2 weeks. I interviewed at Sixt (Berlin) in June 2022
Interview
Worst company. After submitting the home assignment by spending 7 days they did not even give detailed feedback about it. I have sent several mails and they did not even bother to give feedback. This was one of the worst interview I ever had in my entire career.
Interview questions [1]
Question 1
Gave a take home assignment to be completed within 7 days.
I had an interview process with Sixt 9 months ago. They sent me a home take task. I finished and sent it back but they didn't give me any response. I sent an email about the result but they ignored.
Interview questions [1]
Question 1
There was no any technical question. It was an HR interview only
I applied through an employee referral. I interviewed at Sixt (Bengaluru) in Oct 2021
Interview
First : DS round - could be array, string, binary tree, linkedlist, sliding window problems.
Solve online question from leetcode. geeksforgeeks etc. it will be helpful to clear the interview.
Interview questions [1]
Question 1
arr = [c,c,b,d,d,a,a,c,b,b,b,c,d,a]
Given an array of characters, find the min length sub array within this array which has all the unique elements present in the array.
unique = [c,b,d,a]
worst = [c,a,a,a,a,d,d,d,b] //in this case the complete array becomes the min lenght sub array..
Write a function which accepts the char array and prints i,j of the sub array