Me postulé en línea. Acudí a una entrevista en Sixt en ene 2021
Entrevista
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.
Me postulé en línea. El proceso tomó 2 semanas. Acudí a una entrevista en Sixt (Berlín) en jun 2022
Entrevista
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.
Preguntas de entrevista [1]
Pregunta 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.
Preguntas de entrevista [1]
Pregunta 1
There was no any technical question. It was an HR interview only
Me postulé a través de una recomendación de un empleado. Acudí a una entrevista en Sixt (Bengaluru) en oct 2021
Entrevista
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.
Preguntas de entrevista [1]
Pregunta 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