Me postulé en línea. El proceso tomó 2 días. Acudí a una entrevista en Hailo (Tel Aviv) en ago 2023
Entrevista
I had a zoom interview with the head of sw validation team. He described the position, the tech stack they are using etc. the weird part is that the job is described as "software engineer" but then you understand the job is kind of qa which you will do automation, validation and regression tests.... not include development what so ever
Preguntas de entrevista [1]
Pregunta 1
You have a List of tasks. Every task have unique id. Every task have start week, end week and number of engineers you need in order to complete the task. Describe a data structure and algorithm that gets a list of tasks and return what is the period of weeks you need the most engineers. ( find the time where you have multi task ) After that he asked how i will do it if for every task we will have a timestamp start and timestamp end and not start week and end week.
During the technical interview, I was asked to solve coding challenges and design problems related to data structures, algorithms, and software architecture. I had to demonstrate my knowledge of programming languages, frameworks, and tools relevant to the position. In the behavioral interview, I was asked questions related to my problem-solving abilities, communication skills, teamwork experience, and project management skills. I had to provide examples of my past work experience, how I handled conflicts in a team, and how I prioritized tasks. Overall, the interview process allowed me to showcase my technical and non-technical skills and gave me an opportunity to learn from experienced software engineers. The feedback provided after the interview was helpful in identifying my strengths and weaknesses and gave me a better understanding of what software engineering roles involve.
Create all possible sequences of length k from n integers, for example I took a simple inputs and demonstrate the expected output
N=2,k=3:
000
001
010
011
100
101
110
111
I had to implement it using recursion.
Preguntas de entrevista [1]
Pregunta 1
Create all possible sequences of length k from n integers, for example I took a simple inputs and demonstrate the expected output
N=2,k=3:
000
001
010
011
100
101
110
111
I had to implement it using recursion.