J'ai postulé en ligne. J'ai passé un entretien chez Trax Retail (Tel Aviv-Yafo) en nov. 2020
Entretien
Interviewers were antipathetic, didn't look at the camera, had gloomy faces.
He started with a question that meant to fail people over nothing: tell me what you know about the job and trax. Seriously? I have dozens of more interviews, I got the basic idea of your company so why judge me over something so meaningless?
Why don't you introduce the job and the company yourself?
Questions d'entretien [1]
Question 1
All of the variations of the count possible ways to climb stairs problem. Recursively, iteratively, with caching, then with dynamic jumps of stairs, then they somehow said it's possible to do with O(1) space but there's nothing about it online
J'ai postulé en ligne. J'ai passé un entretien chez Trax Retail (Tel Aviv-Yafo) en nov. 2020
Entretien
I got a phone call from the recruiter to schedule a meeting for the next week...
We had a zoom interview.
I passed the first interview... and 2 days after the recruiter told me to schedule the next meeting the next week. but as you can see from the comments in here... They apparently tell that thing to everybody (they tell us we passed the first interview... but 4 HOURS before the next interview as it seems they do it a lot, I got a phone call from the recruiter that "the position is taken"... it seems they do same excuses as a regular thing in their company. I'm very disappointed because I get ready for 4 days to the next interview and they waste my time for nothing! who calls you back 4 hours before the interview and cancel the meeting?
Questions d'entretien [1]
Question 1
Asked me about the company, what do I know.
2 technicals questions.
first was some code in JavaScript.
what will be the output?
he used setTimeout method in a loop. and print the "var i" variable...
for(var i=0;i<10;i++)
setTimeout(() => console.log(i), 0)
console.log("10");
so the output would be 11 times 10.
the next question was about given a sorted array. I suppose to print randomly all numbers in an array in an efficient way.