J'ai postulé en ligne. J'ai passé un entretien chez Sixt en juil. 2018
Entretien
First of all I got a phone call from HR representative without any date set before the call to do an HR phone interview, after that she back to me over a mail telling me that I've passed the first step and the next one will be coding challenge -They sent the challenge without deadline- I did it within a day it was very easy.
After about 10 days I got a mail from a new HR representative telling me that "Your profile impressed us and we would like to have an initial Skype call with you." I told her that I am currently in the middle of the process with the company, is there something messed up or what!, she back to me telling that she is sorry she didn't mention that, this means I passed the task step and invited me to have a technical Skype interview with the mobile labs team leader. In this interview which should be 'technical' the interviewer hasn't asked me a single technical question!, after about 25 mins of talking about my experience and those HR staff which I was asked on the first phone call he came through my coding task and told me that it's perfect I can't ask you any question on it so let's move on the next step which is an invitation to visit the office in Munich, he told me that the HR will contact me within three working days.
After about 10 days I got a rejection mail containing no feedback or reason for the rejection, I mailed both HR & the interviewer asking for reasons and feedback and no one replied me.
Questions d'entretien [1]
Question 1
Describe the best work environment you wanted to work at?
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