J'ai postulé en ligne. J'ai passé un entretien chez Sixt en janv. 2021
Entretien
I had an interview for Senior iOS Developer role located at Munich. At first I attended HR interview then a home task project has been sent to me. I completed task and sent it back but then I got an email that I failed. It is normal that I can fail. I requested some feedback about the home task to see my mistakes. Although one week passed still I haven't got any feedback. I think any developer who attends an interview process deserve feedback.
J'ai postulé en ligne. Le processus a pris 2 semaines. J'ai passé un entretien chez Sixt (Berlin) en juin 2022
Entretien
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.
Questions d'entretien [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.
Questions d'entretien [1]
Question 1
There was no any technical question. It was an HR interview only
J'ai postulé via la recommandation d'un employé. J'ai passé un entretien chez Sixt (Bengaluru) en oct. 2021
Entretien
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.
Questions d'entretien [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